| 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 "android/event_log.cc", | 170 "android/event_log.cc", |
| 171 "android/event_log.h", | 171 "android/event_log.h", |
| 172 "android/field_trial_list.cc", | 172 "android/field_trial_list.cc", |
| 173 "android/field_trial_list.h", | 173 "android/field_trial_list.h", |
| 174 "android/fifo_utils.cc", | 174 "android/fifo_utils.cc", |
| 175 "android/fifo_utils.h", | 175 "android/fifo_utils.h", |
| 176 "android/important_file_writer_android.cc", | 176 "android/important_file_writer_android.cc", |
| 177 "android/important_file_writer_android.h", | 177 "android/important_file_writer_android.h", |
| 178 "android/java_handler_thread.cc", | 178 "android/java_handler_thread.cc", |
| 179 "android/java_handler_thread.h", | 179 "android/java_handler_thread.h", |
| 180 "android/java_message_handler_factory.h", |
| 180 "android/java_runtime.cc", | 181 "android/java_runtime.cc", |
| 181 "android/java_runtime.h", | 182 "android/java_runtime.h", |
| 182 "android/jni_android.cc", | 183 "android/jni_android.cc", |
| 183 "android/jni_android.h", | 184 "android/jni_android.h", |
| 184 "android/jni_array.cc", | 185 "android/jni_array.cc", |
| 185 "android/jni_array.h", | 186 "android/jni_array.h", |
| 186 "android/jni_registrar.cc", | 187 "android/jni_registrar.cc", |
| 187 "android/jni_registrar.h", | 188 "android/jni_registrar.h", |
| 188 "android/jni_string.cc", | 189 "android/jni_string.cc", |
| 189 "android/jni_string.h", | 190 "android/jni_string.h", |
| (...skipping 1821 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2011 "win/wrapped_window_proc_unittest.cc", | 2012 "win/wrapped_window_proc_unittest.cc", |
| 2012 ] | 2013 ] |
| 2013 | 2014 |
| 2014 defines = [] | 2015 defines = [] |
| 2015 | 2016 |
| 2016 deps = [ | 2017 deps = [ |
| 2017 ":base", | 2018 ":base", |
| 2018 ":i18n", | 2019 ":i18n", |
| 2019 ":message_loop_tests", | 2020 ":message_loop_tests", |
| 2020 "//base/allocator:features", | 2021 "//base/allocator:features", |
| 2021 "//base/test:run_all_unittests", | 2022 "//base/test:run_all_base_unittests", |
| 2022 "//base/test:test_support", | 2023 "//base/test:test_support", |
| 2023 "//base/third_party/dynamic_annotations", | 2024 "//base/third_party/dynamic_annotations", |
| 2024 "//testing/gmock", | 2025 "//testing/gmock", |
| 2025 "//testing/gtest", | 2026 "//testing/gtest", |
| 2026 "//third_party/icu", | 2027 "//third_party/icu", |
| 2027 ] | 2028 ] |
| 2028 | 2029 |
| 2029 if (is_ios || is_mac) { | 2030 if (is_ios || is_mac) { |
| 2030 deps += [ ":base_unittests_arc" ] | 2031 deps += [ ":base_unittests_arc" ] |
| 2031 } | 2032 } |
| (...skipping 420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2452 "android/java/templates/NativeLibraries.template", | 2453 "android/java/templates/NativeLibraries.template", |
| 2453 ] | 2454 ] |
| 2454 package_name = "org/chromium/base/library_loader" | 2455 package_name = "org/chromium/base/library_loader" |
| 2455 } | 2456 } |
| 2456 | 2457 |
| 2457 # GYP: //base.gyp:base_java_unittest_support | 2458 # GYP: //base.gyp:base_java_unittest_support |
| 2458 android_library("base_java_unittest_support") { | 2459 android_library("base_java_unittest_support") { |
| 2459 deps = [ | 2460 deps = [ |
| 2460 ":base_java", | 2461 ":base_java", |
| 2461 ] | 2462 ] |
| 2462 java_files = | 2463 java_files = [ |
| 2463 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2464 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 2465 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", |
| 2466 ] |
| 2464 } | 2467 } |
| 2465 } | 2468 } |
| OLD | NEW |