OLD | NEW |
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 2530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2541 | 2541 |
2542 android_library("base_java") { | 2542 android_library("base_java") { |
2543 srcjar_deps = [ | 2543 srcjar_deps = [ |
2544 ":base_android_java_enums_srcjar", | 2544 ":base_android_java_enums_srcjar", |
2545 ":base_build_config_gen", | 2545 ":base_build_config_gen", |
2546 ":base_java_aidl", | 2546 ":base_java_aidl", |
2547 ":base_native_libraries_gen", | 2547 ":base_native_libraries_gen", |
2548 ] | 2548 ] |
2549 | 2549 |
2550 deps = [ | 2550 deps = [ |
| 2551 "//build/android:build_hooks_java", |
2551 "//third_party/android_tools:android_support_annotations_java", | 2552 "//third_party/android_tools:android_support_annotations_java", |
2552 "//third_party/android_tools:android_support_multidex_java", | 2553 "//third_party/android_tools:android_support_multidex_java", |
2553 "//third_party/jsr-305:jsr_305_javalib", | 2554 "//third_party/jsr-305:jsr_305_javalib", |
2554 ] | 2555 ] |
2555 | 2556 |
2556 java_files = [ | 2557 java_files = [ |
2557 "android/java/src/org/chromium/base/ActivityState.java", | 2558 "android/java/src/org/chromium/base/ActivityState.java", |
2558 "android/java/src/org/chromium/base/AnimationFrameTimeHistogram.java", | 2559 "android/java/src/org/chromium/base/AnimationFrameTimeHistogram.java", |
2559 "android/java/src/org/chromium/base/ApiCompatibilityUtils.java", | 2560 "android/java/src/org/chromium/base/ApiCompatibilityUtils.java", |
2560 "android/java/src/org/chromium/base/ApkAssets.java", | 2561 "android/java/src/org/chromium/base/ApkAssets.java", |
(...skipping 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2804 } | 2805 } |
2805 | 2806 |
2806 fuzzer_test("base_json_correctness_fuzzer") { | 2807 fuzzer_test("base_json_correctness_fuzzer") { |
2807 sources = [ | 2808 sources = [ |
2808 "json/correctness_fuzzer.cc", | 2809 "json/correctness_fuzzer.cc", |
2809 ] | 2810 ] |
2810 deps = [ | 2811 deps = [ |
2811 ":base", | 2812 ":base", |
2812 ] | 2813 ] |
2813 } | 2814 } |
OLD | NEW |