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

Side by Side Diff: BUILD.gn

Issue 2050803003: Update to Chromium //base at Chromium commit e3a753f17bac62738b0dbf0b36510f767b081e4b. (Closed) Base URL: https://github.com/domokit/base.git@master
Patch Set: Created 4 years, 6 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 | OWNERS » ('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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 "containers/small_map.h", 179 "containers/small_map.h",
180 "containers/stack_container.h", 180 "containers/stack_container.h",
181 "cpu.cc", 181 "cpu.cc",
182 "cpu.h", 182 "cpu.h",
183 "critical_closure.h", 183 "critical_closure.h",
184 "critical_closure_internal_ios.mm", 184 "critical_closure_internal_ios.mm",
185 "deferred_sequenced_task_runner.cc", 185 "deferred_sequenced_task_runner.cc",
186 "deferred_sequenced_task_runner.h", 186 "deferred_sequenced_task_runner.h",
187 "environment.cc", 187 "environment.cc",
188 "environment.h", 188 "environment.h",
189 "feature_list.cc",
190 "feature_list.h",
189 "file_descriptor_posix.h", 191 "file_descriptor_posix.h",
190 "file_version_info.h", 192 "file_version_info.h",
191 "file_version_info_mac.h", 193 "file_version_info_mac.h",
192 "file_version_info_mac.mm", 194 "file_version_info_mac.mm",
193 "file_version_info_win.cc", 195 "file_version_info_win.cc",
194 "file_version_info_win.h", 196 "file_version_info_win.h",
195 "files/dir_reader_fallback.h", 197 "files/dir_reader_fallback.h",
196 "files/dir_reader_linux.h", 198 "files/dir_reader_linux.h",
197 "files/dir_reader_posix.h", 199 "files/dir_reader_posix.h",
198 "files/file.cc", 200 "files/file.cc",
(...skipping 1382 matching lines...) Expand 10 before | Expand all | Expand 10 after
1581 ":base_android_java_enums_srcjar", 1583 ":base_android_java_enums_srcjar",
1582 ":base_native_libraries_gen", 1584 ":base_native_libraries_gen",
1583 ] 1585 ]
1584 1586
1585 deps = [ 1587 deps = [
1586 "//third_party/android_tools:android_support_multidex_java", 1588 "//third_party/android_tools:android_support_multidex_java",
1587 "//third_party/jsr-305:jsr_305_javalib", 1589 "//third_party/jsr-305:jsr_305_javalib",
1588 ] 1590 ]
1589 1591
1590 DEPRECATED_java_in_dir = "android/java/src" 1592 DEPRECATED_java_in_dir = "android/java/src"
1593 if (is_debug) {
1594 java_files = [
1595 "android/java/debug_src/org/chromium/base/IncrementalInstall.java",
1596 "android/java/debug_src/org/chromium/base/Reflect.java",
1597 ]
1598 } else {
1599 java_files = [ "android/java/release_src/org/chromium/base/IncrementalInst all.java" ]
1600 }
1591 1601
1592 # A new version of NativeLibraries.java (with the actual correct values) 1602 # A new version of NativeLibraries.java (with the actual correct values)
1593 # will be created when creating an apk. 1603 # will be created when creating an apk.
1594 jar_excluded_patterns = [ 1604 jar_excluded_patterns = [
1595 "*/NativeLibraries.class", 1605 "*/NativeLibraries.class",
1596 "*/NativeLibraries##*.class", 1606 "*/NativeLibraries##*.class",
1597 ] 1607 ]
1598 } 1608 }
1599 1609
1600 # GYP: //base.gyp:base_javatests 1610 # GYP: //base.gyp:base_javatests
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
1670 1680
1671 # GYP: //base.gyp:base_java_unittest_support 1681 # GYP: //base.gyp:base_java_unittest_support
1672 android_library("base_java_unittest_support") { 1682 android_library("base_java_unittest_support") {
1673 deps = [ 1683 deps = [
1674 ":base_java", 1684 ":base_java",
1675 ] 1685 ]
1676 java_files = 1686 java_files =
1677 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 1687 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
1678 } 1688 }
1679 } 1689 }
OLDNEW
« no previous file with comments | « no previous file | OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698