Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Side by Side Diff: base/BUILD.gn

Issue 1338813003: GN: Side-load dex files as well as native code in incremental installs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix pylint warnings Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/compiler/compiler.gni") 5 import("//build/config/compiler/compiler.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 if (is_android) { 9 if (is_android) {
10 import("//build/config/android/rules.gni") 10 import("//build/config/android/rules.gni")
(...skipping 1586 matching lines...) Expand 10 before | Expand all | Expand 10 after
1597 ":base_android_java_enums_srcjar", 1597 ":base_android_java_enums_srcjar",
1598 ":base_native_libraries_gen", 1598 ":base_native_libraries_gen",
1599 ] 1599 ]
1600 1600
1601 deps = [ 1601 deps = [
1602 "//third_party/android_tools:android_support_multidex_java", 1602 "//third_party/android_tools:android_support_multidex_java",
1603 "//third_party/jsr-305:jsr_305_javalib", 1603 "//third_party/jsr-305:jsr_305_javalib",
1604 ] 1604 ]
1605 1605
1606 DEPRECATED_java_in_dir = "android/java/src" 1606 DEPRECATED_java_in_dir = "android/java/src"
1607 if (is_debug) {
1608 java_files = [
1609 "android/java/debug_src/org/chromium/base/IncrementalInstall.java",
1610 "android/java/debug_src/org/chromium/base/Reflect.java",
1611 ]
1612 } else {
1613 java_files = [ "android/java/release_src/org/chromium/base/IncrementalInst all.java" ]
1614 }
1615 1607
1616 # A new version of NativeLibraries.java (with the actual correct values) 1608 # A new version of NativeLibraries.java (with the actual correct values)
1617 # will be created when creating an apk. 1609 # will be created when creating an apk.
1618 jar_excluded_patterns = [ 1610 jar_excluded_patterns = [
1619 "*/NativeLibraries.class", 1611 "*/NativeLibraries.class",
1620 "*/NativeLibraries##*.class", 1612 "*/NativeLibraries##*.class",
1621 ] 1613 ]
1622 } 1614 }
1623 1615
1624 # GYP: //base.gyp:base_javatests 1616 # GYP: //base.gyp:base_javatests
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
1694 1686
1695 # GYP: //base.gyp:base_java_unittest_support 1687 # GYP: //base.gyp:base_java_unittest_support
1696 android_library("base_java_unittest_support") { 1688 android_library("base_java_unittest_support") {
1697 deps = [ 1689 deps = [
1698 ":base_java", 1690 ":base_java",
1699 ] 1691 ]
1700 java_files = 1692 java_files =
1701 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 1693 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
1702 } 1694 }
1703 } 1695 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698