< prev index next >

src/share/tools/ProjectCreator/WinGammaPlatform.java

Print this page
rev 9742 : [mq]: veronafix

*** 1,7 **** /* ! * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 1999, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 23,38 **** */ import java.io.File; import java.io.IOException; import java.io.PrintWriter; - import java.util.Enumeration; import java.util.Hashtable; import java.util.Iterator; - import java.util.List; import java.util.Stack; - import java.util.TreeSet; import java.util.Vector; abstract class HsArgHandler extends ArgHandler { static final int STRING = 1; static final int VECTOR = 2; --- 23,35 ----
*** 565,581 **** } Vector createAllConfigs(String platform) { Vector allConfigs = new Vector(); allConfigs.add(new C1DebugConfig()); allConfigs.add(new C1FastDebugConfig()); allConfigs.add(new C1ProductConfig()); ! ! allConfigs.add(new C2DebugConfig()); ! allConfigs.add(new C2FastDebugConfig()); ! allConfigs.add(new C2ProductConfig()); allConfigs.add(new TieredDebugConfig()); allConfigs.add(new TieredFastDebugConfig()); allConfigs.add(new TieredProductConfig()); --- 562,576 ---- } Vector createAllConfigs(String platform) { Vector allConfigs = new Vector(); + if (platform.equals("Win32")) { allConfigs.add(new C1DebugConfig()); allConfigs.add(new C1FastDebugConfig()); allConfigs.add(new C1ProductConfig()); ! } allConfigs.add(new TieredDebugConfig()); allConfigs.add(new TieredFastDebugConfig()); allConfigs.add(new TieredProductConfig());
< prev index next >