| 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 2378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2389 args += [ override_build_date ] | 2389 args += [ override_build_date ] |
| 2390 } | 2390 } |
| 2391 } | 2391 } |
| 2392 | 2392 |
| 2393 if (enable_nocompile_tests) { | 2393 if (enable_nocompile_tests) { |
| 2394 nocompile_test("base_nocompile_tests") { | 2394 nocompile_test("base_nocompile_tests") { |
| 2395 sources = [ | 2395 sources = [ |
| 2396 "bind_unittest.nc", | 2396 "bind_unittest.nc", |
| 2397 "callback_list_unittest.nc", | 2397 "callback_list_unittest.nc", |
| 2398 "callback_unittest.nc", | 2398 "callback_unittest.nc", |
| 2399 "memory/ref_counted_unittest.nc", |
| 2399 "memory/weak_ptr_unittest.nc", | 2400 "memory/weak_ptr_unittest.nc", |
| 2400 "metrics/histogram_unittest.nc", | 2401 "metrics/histogram_unittest.nc", |
| 2401 ] | 2402 ] |
| 2402 | 2403 |
| 2403 deps = [ | 2404 deps = [ |
| 2404 ":base", | 2405 ":base", |
| 2405 "//base/test:run_all_unittests", | 2406 "//base/test:run_all_unittests", |
| 2406 "//testing/gtest", | 2407 "//testing/gtest", |
| 2407 ] | 2408 ] |
| 2408 } | 2409 } |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2549 jar_excluded_patterns = [ | 2550 jar_excluded_patterns = [ |
| 2550 "*/BuildConfig.class", | 2551 "*/BuildConfig.class", |
| 2551 "*/NativeLibraries.class", | 2552 "*/NativeLibraries.class", |
| 2552 "*/NativeLibraries##*.class", | 2553 "*/NativeLibraries##*.class", |
| 2553 ] | 2554 ] |
| 2554 } | 2555 } |
| 2555 | 2556 |
| 2556 android_aidl("base_java_aidl") { | 2557 android_aidl("base_java_aidl") { |
| 2557 import_include = [ "android/java/src" ] | 2558 import_include = [ "android/java/src" ] |
| 2558 sources = [ | 2559 sources = [ |
| 2559 "android/java/src/org/chromium/base/process_launcher/IChildProcessServic
e.aidl", | 2560 "android/java/src/org/chromium/base/process_launcher/IChildProcessService.
aidl", |
| 2560 ] | 2561 ] |
| 2561 } | 2562 } |
| 2562 | |
| 2563 | 2563 |
| 2564 android_library("base_javatests") { | 2564 android_library("base_javatests") { |
| 2565 testonly = true | 2565 testonly = true |
| 2566 deps = [ | 2566 deps = [ |
| 2567 ":base_java", | 2567 ":base_java", |
| 2568 ":base_java_test_support", | 2568 ":base_java_test_support", |
| 2569 "//third_party/android_support_test_runner:runner_java", | 2569 "//third_party/android_support_test_runner:runner_java", |
| 2570 "//third_party/junit:junit", | 2570 "//third_party/junit:junit", |
| 2571 ] | 2571 ] |
| 2572 java_files = [ | 2572 java_files = [ |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2694 } | 2694 } |
| 2695 | 2695 |
| 2696 fuzzer_test("base_json_correctness_fuzzer") { | 2696 fuzzer_test("base_json_correctness_fuzzer") { |
| 2697 sources = [ | 2697 sources = [ |
| 2698 "json/correctness_fuzzer.cc", | 2698 "json/correctness_fuzzer.cc", |
| 2699 ] | 2699 ] |
| 2700 deps = [ | 2700 deps = [ |
| 2701 ":base", | 2701 ":base", |
| 2702 ] | 2702 ] |
| 2703 } | 2703 } |
| OLD | NEW |