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

Side by Side Diff: base/BUILD.gn

Issue 2160013002: Add device format filter in DisableIf() annotation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move DeviceFormFactor.java from src/ui to src/base Created 4 years, 5 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 # HOW TO WRITE CONDITIONALS IN THIS FILE 5 # HOW TO WRITE CONDITIONALS IN THIS FILE
6 # ====================================== 6 # ======================================
7 # 7 #
8 # In many other places, one would write a conditional that expresses all the 8 # In many other places, one would write a conditional that expresses all the
9 # cases when a source file is used or unused, and then either add or subtract 9 # cases when a source file is used or unused, and then either add or subtract
10 # it from the sources list in that case 10 # it from the sources list in that case
(...skipping 2269 matching lines...) Expand 10 before | Expand all | Expand 10 after
2280 "android/java/src/org/chromium/base/library_loader/LegacyLinker.java", 2280 "android/java/src/org/chromium/base/library_loader/LegacyLinker.java",
2281 "android/java/src/org/chromium/base/library_loader/LibraryLoader.java", 2281 "android/java/src/org/chromium/base/library_loader/LibraryLoader.java",
2282 "android/java/src/org/chromium/base/library_loader/Linker.java", 2282 "android/java/src/org/chromium/base/library_loader/Linker.java",
2283 "android/java/src/org/chromium/base/library_loader/LoaderErrors.java", 2283 "android/java/src/org/chromium/base/library_loader/LoaderErrors.java",
2284 "android/java/src/org/chromium/base/library_loader/ModernLinker.java", 2284 "android/java/src/org/chromium/base/library_loader/ModernLinker.java",
2285 "android/java/src/org/chromium/base/library_loader/NativeLibraryPreloader. java", 2285 "android/java/src/org/chromium/base/library_loader/NativeLibraryPreloader. java",
2286 "android/java/src/org/chromium/base/library_loader/ProcessInitException.ja va", 2286 "android/java/src/org/chromium/base/library_loader/ProcessInitException.ja va",
2287 "android/java/src/org/chromium/base/metrics/RecordHistogram.java", 2287 "android/java/src/org/chromium/base/metrics/RecordHistogram.java",
2288 "android/java/src/org/chromium/base/metrics/RecordUserAction.java", 2288 "android/java/src/org/chromium/base/metrics/RecordUserAction.java",
2289 "android/java/src/org/chromium/base/multidex/ChromiumMultiDexInstaller.jav a", 2289 "android/java/src/org/chromium/base/multidex/ChromiumMultiDexInstaller.jav a",
2290 "android/java/src/org/chromium/base/util/base/DeviceFormFactor.java",
Ted C 2016/07/20 18:45:35 util/base is odd...I don't see why this wouldn't b
shenghuazhang 2016/07/21 22:38:27 Done.
2290 ] 2291 ]
2291 2292
2292 # New versions of BuildConfig.java and NativeLibraries.java 2293 # New versions of BuildConfig.java and NativeLibraries.java
2293 # (with the actual correct values) will be created when creating an apk. 2294 # (with the actual correct values) will be created when creating an apk.
2294 jar_excluded_patterns = [ 2295 jar_excluded_patterns = [
2295 "*/BuildConfig.class", 2296 "*/BuildConfig.class",
2296 "*/NativeLibraries.class", 2297 "*/NativeLibraries.class",
2297 "*/NativeLibraries##*.class", 2298 "*/NativeLibraries##*.class",
2298 ] 2299 ]
2299 } 2300 }
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
2426 2427
2427 # GYP: //base.gyp:base_java_unittest_support 2428 # GYP: //base.gyp:base_java_unittest_support
2428 android_library("base_java_unittest_support") { 2429 android_library("base_java_unittest_support") {
2429 deps = [ 2430 deps = [
2430 ":base_java", 2431 ":base_java",
2431 ] 2432 ]
2432 java_files = 2433 java_files =
2433 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2434 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2434 } 2435 }
2435 } 2436 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698