| 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 "files/file_path_watcher_fsevents.cc", | 209 "files/file_path_watcher_fsevents.cc", |
| 210 "files/file_path_watcher_fsevents.h", | 210 "files/file_path_watcher_fsevents.h", |
| 211 "files/file_path_watcher_kqueue.cc", | 211 "files/file_path_watcher_kqueue.cc", |
| 212 "files/file_path_watcher_kqueue.h", | 212 "files/file_path_watcher_kqueue.h", |
| 213 "files/file_path_watcher_linux.cc", | 213 "files/file_path_watcher_linux.cc", |
| 214 "files/file_path_watcher_mac.cc", | 214 "files/file_path_watcher_mac.cc", |
| 215 "files/file_path_watcher_win.cc", | 215 "files/file_path_watcher_win.cc", |
| 216 "files/file_posix.cc", | 216 "files/file_posix.cc", |
| 217 "files/file_proxy.cc", | 217 "files/file_proxy.cc", |
| 218 "files/file_proxy.h", | 218 "files/file_proxy.h", |
| 219 "files/file_tracing.cc", | |
| 220 "files/file_tracing.h", | |
| 221 "files/file_util.cc", | 219 "files/file_util.cc", |
| 222 "files/file_util.h", | 220 "files/file_util.h", |
| 223 "files/file_util_android.cc", | 221 "files/file_util_android.cc", |
| 224 "files/file_util_linux.cc", | 222 "files/file_util_linux.cc", |
| 225 "files/file_util_mac.mm", | 223 "files/file_util_mac.mm", |
| 226 "files/file_util_posix.cc", | 224 "files/file_util_posix.cc", |
| 227 "files/file_util_proxy.cc", | 225 "files/file_util_proxy.cc", |
| 228 "files/file_util_proxy.h", | 226 "files/file_util_proxy.h", |
| 229 "files/file_util_win.cc", | 227 "files/file_util_win.cc", |
| 230 "files/file_win.cc", | 228 "files/file_win.cc", |
| (...skipping 1269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1500 | 1498 |
| 1501 # GYP: //base.gyp:base_java_unittest_support | 1499 # GYP: //base.gyp:base_java_unittest_support |
| 1502 android_library("base_java_unittest_support") { | 1500 android_library("base_java_unittest_support") { |
| 1503 deps = [ | 1501 deps = [ |
| 1504 ":base_java", | 1502 ":base_java", |
| 1505 ] | 1503 ] |
| 1506 java_files = | 1504 java_files = |
| 1507 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1505 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1508 } | 1506 } |
| 1509 } | 1507 } |
| OLD | NEW |