| 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 2053 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2064 ] | 2064 ] |
| 2065 srcjar_deps = [ ":base_build_config_gen" ] | 2065 srcjar_deps = [ ":base_build_config_gen" ] |
| 2066 } | 2066 } |
| 2067 | 2067 |
| 2068 # GYP: //base.gyp:base_junit_tests | 2068 # GYP: //base.gyp:base_junit_tests |
| 2069 junit_binary("base_junit_tests") { | 2069 junit_binary("base_junit_tests") { |
| 2070 java_files = [ | 2070 java_files = [ |
| 2071 "android/junit/src/org/chromium/base/BaseChromiumApplicationTest.java", | 2071 "android/junit/src/org/chromium/base/BaseChromiumApplicationTest.java", |
| 2072 "android/junit/src/org/chromium/base/LogTest.java", | 2072 "android/junit/src/org/chromium/base/LogTest.java", |
| 2073 "test/android/junit/src/org/chromium/base/test/util/DisableIfTest.java", | 2073 "test/android/junit/src/org/chromium/base/test/util/DisableIfTest.java", |
| 2074 "test/android/junit/src/org/chromium/base/test/util/MinAndroidSdkLevelSkip
CheckTest.java", |
| 2075 "test/android/junit/src/org/chromium/base/test/util/RestrictionSkipCheckTe
st.java", |
| 2076 "test/android/junit/src/org/chromium/base/test/util/SkipCheckTest.java", |
| 2074 ] | 2077 ] |
| 2075 deps = [ | 2078 deps = [ |
| 2076 ":base_java", | 2079 ":base_java", |
| 2077 ":base_java_test_support", | 2080 ":base_java_test_support", |
| 2078 ":base_junit_test_support", | 2081 ":base_junit_test_support", |
| 2079 ] | 2082 ] |
| 2080 } | 2083 } |
| 2081 | 2084 |
| 2082 # GYP: //base.gyp:base_java_application_state | 2085 # GYP: //base.gyp:base_java_application_state |
| 2083 # GYP: //base.gyp:base_java_library_load_from_apk_status_codes | 2086 # GYP: //base.gyp:base_java_library_load_from_apk_status_codes |
| (...skipping 26 matching lines...) Expand all Loading... |
| 2110 | 2113 |
| 2111 # GYP: //base.gyp:base_java_unittest_support | 2114 # GYP: //base.gyp:base_java_unittest_support |
| 2112 android_library("base_java_unittest_support") { | 2115 android_library("base_java_unittest_support") { |
| 2113 deps = [ | 2116 deps = [ |
| 2114 ":base_java", | 2117 ":base_java", |
| 2115 ] | 2118 ] |
| 2116 java_files = | 2119 java_files = |
| 2117 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2120 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2118 } | 2121 } |
| 2119 } | 2122 } |
| OLD | NEW |