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

Side by Side Diff: base/BUILD.gn

Issue 1291793007: GN(android): Add scripts & runtime logic for installing _managed apks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-managed-install
Patch Set: fix compile 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
« no previous file with comments | « no previous file | base/android/java/debug_src/org/chromium/base/IncrementalInstall.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1578 matching lines...) Expand 10 before | Expand all | Expand 10 after
1589 ":base_android_java_enums_srcjar", 1589 ":base_android_java_enums_srcjar",
1590 ":base_native_libraries_gen", 1590 ":base_native_libraries_gen",
1591 ] 1591 ]
1592 1592
1593 deps = [ 1593 deps = [
1594 "//third_party/android_tools:android_support_multidex_java", 1594 "//third_party/android_tools:android_support_multidex_java",
1595 "//third_party/jsr-305:jsr_305_javalib", 1595 "//third_party/jsr-305:jsr_305_javalib",
1596 ] 1596 ]
1597 1597
1598 DEPRECATED_java_in_dir = "android/java/src" 1598 DEPRECATED_java_in_dir = "android/java/src"
1599 if (is_debug) {
1600 java_files = [
1601 "android/java/debug_src/org/chromium/base/IncrementalInstall.java",
1602 "android/java/debug_src/org/chromium/base/Reflect.java",
1603 ]
1604 } else {
1605 java_files = [ "android/java/release_src/org/chromium/base/IncrementalInst all.java" ]
1606 }
1599 1607
1600 # A new version of NativeLibraries.java (with the actual correct values) 1608 # A new version of NativeLibraries.java (with the actual correct values)
1601 # will be created when creating an apk. 1609 # will be created when creating an apk.
1602 jar_excluded_patterns = [ 1610 jar_excluded_patterns = [
1603 "*/NativeLibraries.class", 1611 "*/NativeLibraries.class",
1604 "*/NativeLibraries##*.class", 1612 "*/NativeLibraries##*.class",
1605 ] 1613 ]
1606 } 1614 }
1607 1615
1608 # GYP: //base.gyp:base_javatests 1616 # GYP: //base.gyp:base_javatests
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
1678 1686
1679 # GYP: //base.gyp:base_java_unittest_support 1687 # GYP: //base.gyp:base_java_unittest_support
1680 android_library("base_java_unittest_support") { 1688 android_library("base_java_unittest_support") {
1681 deps = [ 1689 deps = [
1682 ":base_java", 1690 ":base_java",
1683 ] 1691 ]
1684 java_files = 1692 java_files =
1685 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 1693 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
1686 } 1694 }
1687 } 1695 }
OLDNEW
« no previous file with comments | « no previous file | base/android/java/debug_src/org/chromium/base/IncrementalInstall.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698