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 2532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2543 jar_excluded_patterns = [ | 2543 jar_excluded_patterns = [ |
2544 "*/BuildConfig.class", | 2544 "*/BuildConfig.class", |
2545 "*/NativeLibraries.class", | 2545 "*/NativeLibraries.class", |
2546 "*/NativeLibraries##*.class", | 2546 "*/NativeLibraries##*.class", |
2547 ] | 2547 ] |
2548 } | 2548 } |
2549 | 2549 |
2550 android_aidl("base_java_aidl") { | 2550 android_aidl("base_java_aidl") { |
2551 import_include = [ "android/java/src" ] | 2551 import_include = [ "android/java/src" ] |
2552 sources = [ | 2552 sources = [ |
| 2553 "android/java/src/org/chromium/base/process_launcher/ICallbackInt.aidl", |
2553 "android/java/src/org/chromium/base/process_launcher/IChildProcessService.
aidl", | 2554 "android/java/src/org/chromium/base/process_launcher/IChildProcessService.
aidl", |
2554 ] | 2555 ] |
2555 } | 2556 } |
2556 | 2557 |
2557 android_library("base_javatests") { | 2558 android_library("base_javatests") { |
2558 testonly = true | 2559 testonly = true |
2559 deps = [ | 2560 deps = [ |
2560 ":base_java", | 2561 ":base_java", |
2561 ":base_java_test_support", | 2562 ":base_java_test_support", |
2562 "//third_party/android_support_test_runner:runner_java", | 2563 "//third_party/android_support_test_runner:runner_java", |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2687 } | 2688 } |
2688 | 2689 |
2689 fuzzer_test("base_json_correctness_fuzzer") { | 2690 fuzzer_test("base_json_correctness_fuzzer") { |
2690 sources = [ | 2691 sources = [ |
2691 "json/correctness_fuzzer.cc", | 2692 "json/correctness_fuzzer.cc", |
2692 ] | 2693 ] |
2693 deps = [ | 2694 deps = [ |
2694 ":base", | 2695 ":base", |
2695 ] | 2696 ] |
2696 } | 2697 } |
OLD | NEW |