| 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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 "android/path_utils.cc", | 201 "android/path_utils.cc", |
| 202 "android/path_utils.h", | 202 "android/path_utils.h", |
| 203 "android/record_histogram.cc", | 203 "android/record_histogram.cc", |
| 204 "android/record_histogram.h", | 204 "android/record_histogram.h", |
| 205 "android/record_user_action.cc", | 205 "android/record_user_action.cc", |
| 206 "android/record_user_action.h", | 206 "android/record_user_action.h", |
| 207 "android/scoped_java_ref.cc", | 207 "android/scoped_java_ref.cc", |
| 208 "android/scoped_java_ref.h", | 208 "android/scoped_java_ref.h", |
| 209 "android/sys_utils.cc", | 209 "android/sys_utils.cc", |
| 210 "android/sys_utils.h", | 210 "android/sys_utils.h", |
| 211 "android/thread_utils.h", | |
| 212 "android/trace_event_binding.cc", | 211 "android/trace_event_binding.cc", |
| 213 "android/trace_event_binding.h", | 212 "android/trace_event_binding.h", |
| 214 "at_exit.cc", | 213 "at_exit.cc", |
| 215 "at_exit.h", | 214 "at_exit.h", |
| 216 "atomic_ref_count.h", | 215 "atomic_ref_count.h", |
| 217 "atomic_sequence_num.h", | 216 "atomic_sequence_num.h", |
| 218 "atomicops.h", | 217 "atomicops.h", |
| 219 "atomicops_internals_portable.h", | 218 "atomicops_internals_portable.h", |
| 220 "atomicops_internals_x86_msvc.h", | 219 "atomicops_internals_x86_msvc.h", |
| 221 "auto_reset.h", | 220 "auto_reset.h", |
| (...skipping 2199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2421 | 2420 |
| 2422 # GYP: //base.gyp:base_java_unittest_support | 2421 # GYP: //base.gyp:base_java_unittest_support |
| 2423 android_library("base_java_unittest_support") { | 2422 android_library("base_java_unittest_support") { |
| 2424 deps = [ | 2423 deps = [ |
| 2425 ":base_java", | 2424 ":base_java", |
| 2426 ] | 2425 ] |
| 2427 java_files = | 2426 java_files = |
| 2428 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2427 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 2429 } | 2428 } |
| 2430 } | 2429 } |
| OLD | NEW |