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