| 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("//chrome/chrome_tests.gni") | 9 import("//chrome/chrome_tests.gni") |
| 10 import("//chrome/test/base/js2gtest.gni") | 10 import("//chrome/test/base/js2gtest.gni") |
| (...skipping 1335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1346 # dependencies block below, rather than here. | 1346 # dependencies block below, rather than here. |
| 1347 # Unit tests should only depend on: | 1347 # Unit tests should only depend on: |
| 1348 # 1) everything that the chrome binaries depend on: | 1348 # 1) everything that the chrome binaries depend on: |
| 1349 "//chrome:browser_dependencies", | 1349 "//chrome:browser_dependencies", |
| 1350 "//chrome:child_dependencies", | 1350 "//chrome:child_dependencies", |
| 1351 | 1351 |
| 1352 # 2) test-specific support libraries: | 1352 # 2) test-specific support libraries: |
| 1353 ":test_support_unit", | 1353 ":test_support_unit", |
| 1354 "//base/test:test_support", | 1354 "//base/test:test_support", |
| 1355 "//chrome/test:test_support", | 1355 "//chrome/test:test_support", |
| 1356 "//components/proxy_config", |
| 1356 "//components/resources", | 1357 "//components/resources", |
| 1357 "//components/content_settings/core/test:test_support", | 1358 "//components/content_settings/core/test:test_support", |
| 1358 "//content/test:test_support", | 1359 "//content/test:test_support", |
| 1359 "//content/public/app:both", | 1360 "//content/public/app:both", |
| 1360 "//crypto:platform", | 1361 "//crypto:platform", |
| 1361 "//crypto:test_support", | 1362 "//crypto:test_support", |
| 1362 "//net", | 1363 "//net", |
| 1363 "//net:test_support", | 1364 "//net:test_support", |
| 1364 "//sync:test_support_sync_api", | 1365 "//sync:test_support_sync_api", |
| 1365 "//sync:test_support_sync_core", | 1366 "//sync:test_support_sync_core", |
| (...skipping 591 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1957 "//third_party/mojo/src/mojo/edk/system", | 1958 "//third_party/mojo/src/mojo/edk/system", |
| 1958 ] | 1959 ] |
| 1959 | 1960 |
| 1960 if (!is_android && use_ash) { | 1961 if (!is_android && use_ash) { |
| 1961 sources += rebase_path( | 1962 sources += rebase_path( |
| 1962 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, | 1963 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, |
| 1963 ".", | 1964 ".", |
| 1964 "//chrome") | 1965 "//chrome") |
| 1965 } | 1966 } |
| 1966 } | 1967 } |
| OLD | NEW |