Package com.google.gwt.dev.cfg

Examples of com.google.gwt.dev.cfg.LibraryGroup


    module.addRule(browserShimGenerateRule);
    RuleGenerateWith localeMessageGenerateRule = new RuleGenerateWith(LocaleMessageGenerator.class);
    localeMessageGenerateRule.getRootCondition()
        .getConditions().add(new ConditionWhenTypeEndsWith("Messages"));
    module.addRule(localeMessageGenerateRule);
    LibraryGroup libraryGroup = LibraryGroupTest.buildVariedPropertyGeneratorLibraryGroup(
        Sets.newHashSet("com.google.ChromeMessages"),
        Sets.newHashSet("com.google.WindowShim"));
    PrecompileTaskOptions options = new CompilerOptionsImpl();
    options.setFinalProperties(module.getProperties());
    compilerContext = new CompilerContext.Builder().libraryGroup(libraryGroup)
View Full Code Here


        oldLibrary.addCompilationUnit(compilationUnit);
      }

      // Create and return a LibraryTypeOracle that doesn't have any compilation units loaded but
      // which can lazy load all of them out of a previously compiled library.
      LibraryGroup libraryGroup = LibraryGroup.fromLibraries(Lists.newArrayList(oldLibrary), false);
      CompilerContext newCompilerContext =
          new CompilerContext.Builder().compileMonolithic(false).libraryGroup(libraryGroup).build();
      newCompilerContext.getOptions().setStrict(true);
      CompilationState state = CompilationStateBuilder.buildFrom(logger, newCompilerContext,
          Sets.<Resource> newHashSet());
View Full Code Here

TOP

Related Classes of com.google.gwt.dev.cfg.LibraryGroup

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.