| 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 2038 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2049 ] | 2049 ] |
| 2050 srcjar_deps = [ ":base_build_config_gen" ] | 2050 srcjar_deps = [ ":base_build_config_gen" ] |
| 2051 } | 2051 } |
| 2052 | 2052 |
| 2053 # GYP: //base.gyp:base_junit_tests | 2053 # GYP: //base.gyp:base_junit_tests |
| 2054 junit_binary("base_junit_tests") { | 2054 junit_binary("base_junit_tests") { |
| 2055 java_files = [ | 2055 java_files = [ |
| 2056 "android/junit/src/org/chromium/base/BaseChromiumApplicationTest.java", | 2056 "android/junit/src/org/chromium/base/BaseChromiumApplicationTest.java", |
| 2057 "android/junit/src/org/chromium/base/LogTest.java", | 2057 "android/junit/src/org/chromium/base/LogTest.java", |
| 2058 "test/android/junit/src/org/chromium/base/test/util/DisableIfTest.java", | 2058 "test/android/junit/src/org/chromium/base/test/util/DisableIfTest.java", |
| 2059 "test/android/junit/src/org/chromium/base/test/util/MinAndroidSdkLevelSkip
CheckTest.java", |
| 2060 "test/android/junit/src/org/chromium/base/test/util/RestrictionSkipCheckTe
st.java", |
| 2059 ] | 2061 ] |
| 2060 deps = [ | 2062 deps = [ |
| 2061 ":base_java", | 2063 ":base_java", |
| 2062 ":base_java_test_support", | 2064 ":base_java_test_support", |
| 2063 ":base_junit_test_support", | 2065 ":base_junit_test_support", |
| 2064 ] | 2066 ] |
| 2065 } | 2067 } |
| 2066 | 2068 |
| 2067 # GYP: //base.gyp:base_java_application_state | 2069 # GYP: //base.gyp:base_java_application_state |
| 2068 # GYP: //base.gyp:base_java_library_load_from_apk_status_codes | 2070 # GYP: //base.gyp:base_java_library_load_from_apk_status_codes |
| (...skipping 26 matching lines...) Expand all Loading... |
| 2095 | 2097 |
| 2096 # GYP: //base.gyp:base_java_unittest_support | 2098 # GYP: //base.gyp:base_java_unittest_support |
| 2097 android_library("base_java_unittest_support") { | 2099 android_library("base_java_unittest_support") { |
| 2098 deps = [ | 2100 deps = [ |
| 2099 ":base_java", | 2101 ":base_java", |
| 2100 ] | 2102 ] |
| 2101 java_files = | 2103 java_files = |
| 2102 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2104 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2103 } | 2105 } |
| 2104 } | 2106 } |
| OLD | NEW |