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

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: Python review comments 1 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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 if (is_android) { 8 if (is_android) {
9 import("//build/config/android/rules.gni") 9 import("//build/config/android/rules.gni")
10 } 10 }
(...skipping 1585 matching lines...) Expand 10 before | Expand all | Expand 10 after
1596 ":base_android_java_enums_srcjar", 1596 ":base_android_java_enums_srcjar",
1597 ":base_native_libraries_gen", 1597 ":base_native_libraries_gen",
1598 ] 1598 ]
1599 1599
1600 deps = [ 1600 deps = [
1601 "//third_party/android_tools:android_support_multidex_java", 1601 "//third_party/android_tools:android_support_multidex_java",
1602 "//third_party/jsr-305:jsr_305_javalib", 1602 "//third_party/jsr-305:jsr_305_javalib",
1603 ] 1603 ]
1604 1604
1605 DEPRECATED_java_in_dir = "android/java/src" 1605 DEPRECATED_java_in_dir = "android/java/src"
1606 if (is_debug) {
1607 java_files = [
1608 "android/java/debug_src/org/chromium/base/IncrementalInstall.java",
1609 "android/java/debug_src/org/chromium/base/Reflect.java",
1610 ]
1611 } else {
1612 java_files = [ "android/java/release_src/org/chromium/base/IncrementalInst all.java" ]
1613 }
1614 1606
1615 # A new version of NativeLibraries.java (with the actual correct values) 1607 # A new version of NativeLibraries.java (with the actual correct values)
1616 # will be created when creating an apk. 1608 # will be created when creating an apk.
1617 jar_excluded_patterns = [ 1609 jar_excluded_patterns = [
1618 "*/NativeLibraries.class", 1610 "*/NativeLibraries.class",
1619 "*/NativeLibraries##*.class", 1611 "*/NativeLibraries##*.class",
1620 ] 1612 ]
1621 } 1613 }
1622 1614
1623 # GYP: //base.gyp:base_javatests 1615 # GYP: //base.gyp:base_javatests
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
1693 1685
1694 # GYP: //base.gyp:base_java_unittest_support 1686 # GYP: //base.gyp:base_java_unittest_support
1695 android_library("base_java_unittest_support") { 1687 android_library("base_java_unittest_support") {
1696 deps = [ 1688 deps = [
1697 ":base_java", 1689 ":base_java",
1698 ] 1690 ]
1699 java_files = 1691 java_files =
1700 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 1692 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
1701 } 1693 }
1702 } 1694 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698