| 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 1350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1361 ".", | 1361 ".", |
| 1362 "//chrome") | 1362 "//chrome") |
| 1363 } | 1363 } |
| 1364 } | 1364 } |
| 1365 if (toolkit_views) { | 1365 if (toolkit_views) { |
| 1366 deps += [ | 1366 deps += [ |
| 1367 "//components/web_modal:test_support", | 1367 "//components/web_modal:test_support", |
| 1368 "//ui/views", | 1368 "//ui/views", |
| 1369 "//ui/views:test_support", | 1369 "//ui/views:test_support", |
| 1370 ] | 1370 ] |
| 1371 sources += rebase_path(unit_gypi_values.chrome_unit_tests_views_sources, |
| 1372 ".", |
| 1373 "//chrome") |
| 1371 if (!is_mac) { | 1374 if (!is_mac) { |
| 1372 # TODO(tapted): Enable toolkit-views unit_tests on Mac when their | 1375 sources += rebase_path( |
| 1373 # respective implementations are linked in. http://crbug.com/412234. | 1376 unit_gypi_values.chrome_unit_tests_views_non_mac_sources, |
| 1374 sources += rebase_path(unit_gypi_values.chrome_unit_tests_views_sources, | 1377 ".", |
| 1375 ".", | 1378 "//chrome") |
| 1376 "//chrome") | |
| 1377 } | 1379 } |
| 1378 } | 1380 } |
| 1379 if (use_ash) { | 1381 if (use_ash) { |
| 1380 sources += rebase_path(unit_gypi_values.chrome_unit_tests_ash_sources, | 1382 sources += rebase_path(unit_gypi_values.chrome_unit_tests_ash_sources, |
| 1381 ".", | 1383 ".", |
| 1382 "//chrome") | 1384 "//chrome") |
| 1383 deps += [ | 1385 deps += [ |
| 1384 "//ash:test_support", | 1386 "//ash:test_support", |
| 1385 "//ash/resources", | 1387 "//ash/resources", |
| 1386 "//ash/strings", | 1388 "//ash/strings", |
| (...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1826 "//third_party/mojo/src/mojo/edk/system", | 1828 "//third_party/mojo/src/mojo/edk/system", |
| 1827 ] | 1829 ] |
| 1828 | 1830 |
| 1829 if (!is_android && use_ash) { | 1831 if (!is_android && use_ash) { |
| 1830 sources += | 1832 sources += |
| 1831 rebase_path(unit_gypi_values.chrome_test_support_unit_ash_sources, | 1833 rebase_path(unit_gypi_values.chrome_test_support_unit_ash_sources, |
| 1832 ".", | 1834 ".", |
| 1833 "//chrome") | 1835 "//chrome") |
| 1834 } | 1836 } |
| 1835 } | 1837 } |
| OLD | NEW |