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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
205 "android/path_utils.cc", | 205 "android/path_utils.cc", |
206 "android/path_utils.h", | 206 "android/path_utils.h", |
207 "android/record_histogram.cc", | 207 "android/record_histogram.cc", |
208 "android/record_histogram.h", | 208 "android/record_histogram.h", |
209 "android/record_user_action.cc", | 209 "android/record_user_action.cc", |
210 "android/record_user_action.h", | 210 "android/record_user_action.h", |
211 "android/scoped_java_ref.cc", | 211 "android/scoped_java_ref.cc", |
212 "android/scoped_java_ref.h", | 212 "android/scoped_java_ref.h", |
213 "android/sys_utils.cc", | 213 "android/sys_utils.cc", |
214 "android/sys_utils.h", | 214 "android/sys_utils.h", |
215 "android/thread_utils.h", | |
216 "android/trace_event_binding.cc", | 215 "android/trace_event_binding.cc", |
217 "android/trace_event_binding.h", | 216 "android/trace_event_binding.h", |
218 "at_exit.cc", | 217 "at_exit.cc", |
219 "at_exit.h", | 218 "at_exit.h", |
220 "atomic_ref_count.h", | 219 "atomic_ref_count.h", |
221 "atomic_sequence_num.h", | 220 "atomic_sequence_num.h", |
222 "atomicops.h", | 221 "atomicops.h", |
223 "atomicops_internals_portable.h", | 222 "atomicops_internals_portable.h", |
224 "atomicops_internals_x86_msvc.h", | 223 "atomicops_internals_x86_msvc.h", |
225 "auto_reset.h", | 224 "auto_reset.h", |
(...skipping 2217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2443 | 2442 |
2444 # GYP: //base.gyp:base_java_unittest_support | 2443 # GYP: //base.gyp:base_java_unittest_support |
2445 android_library("base_java_unittest_support") { | 2444 android_library("base_java_unittest_support") { |
2446 deps = [ | 2445 deps = [ |
2447 ":base_java", | 2446 ":base_java", |
2448 ] | 2447 ] |
2449 java_files = | 2448 java_files = |
2450 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 2449 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
2451 } | 2450 } |
2452 } | 2451 } |
OLD | NEW |