| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/module_args/v8.gni") | 9 import("//build/module_args/v8.gni") |
| 10 import("//testing/test.gni") | 10 import("//testing/test.gni") |
| (...skipping 1256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1267 # 'UseLibraryDependencyInputs': "true", | 1267 # 'UseLibraryDependencyInputs': "true", |
| 1268 | 1268 |
| 1269 if (!is_ios) { | 1269 if (!is_ios) { |
| 1270 deps += [ | 1270 deps += [ |
| 1271 ":unit_tests_js", | 1271 ":unit_tests_js", |
| 1272 "//components/audio_modem:audio_modem_test_support", | 1272 "//components/audio_modem:audio_modem_test_support", |
| 1273 "//components/autofill/content/browser/wallet:test_support", | 1273 "//components/autofill/content/browser/wallet:test_support", |
| 1274 "//components/autofill/content/renderer:test_support", | 1274 "//components/autofill/content/renderer:test_support", |
| 1275 "//components/metrics/proto", | 1275 "//components/metrics/proto", |
| 1276 "//components/data_reduction_proxy/core/browser:test_support", | 1276 "//components/data_reduction_proxy/core/browser:test_support", |
| 1277 "//components/safe_json:test_support", |
| 1277 "//components/webdata_services:test_support", | 1278 "//components/webdata_services:test_support", |
| 1278 "//components/strings", | 1279 "//components/strings", |
| 1279 "//device/bluetooth:mocks", | 1280 "//device/bluetooth:mocks", |
| 1280 "//content/app/resources", | 1281 "//content/app/resources", |
| 1281 "//gpu:test_support", | 1282 "//gpu:test_support", |
| 1282 "//media:test_support", | 1283 "//media:test_support", |
| 1283 | 1284 |
| 1284 #'../ppapi/ppapi_internal.gyp:ppapi_unittest_shared', TODO(GYP) | 1285 #'../ppapi/ppapi_internal.gyp:ppapi_unittest_shared', TODO(GYP) |
| 1285 "//third_party/leveldatabase", | 1286 "//third_party/leveldatabase", |
| 1286 "//third_party/libaddressinput", | 1287 "//third_party/libaddressinput", |
| (...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1828 "//third_party/mojo/src/mojo/edk/system", | 1829 "//third_party/mojo/src/mojo/edk/system", |
| 1829 ] | 1830 ] |
| 1830 | 1831 |
| 1831 if (!is_android && use_ash) { | 1832 if (!is_android && use_ash) { |
| 1832 sources += | 1833 sources += |
| 1833 rebase_path(unit_gypi_values.chrome_test_support_unit_ash_sources, | 1834 rebase_path(unit_gypi_values.chrome_test_support_unit_ash_sources, |
| 1834 ".", | 1835 ".", |
| 1835 "//chrome") | 1836 "//chrome") |
| 1836 } | 1837 } |
| 1837 } | 1838 } |
| OLD | NEW |