| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//ui/base/ui_features.gni") | 8 import("//ui/base/ui_features.gni") |
| 9 | 9 |
| 10 # Historical note: Ash shipped on Windows for a couple years to support | 10 # Historical note: Ash shipped on Windows for a couple years to support |
| (...skipping 1383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1394 "//url", | 1394 "//url", |
| 1395 ] | 1395 ] |
| 1396 | 1396 |
| 1397 data_deps = [ | 1397 data_deps = [ |
| 1398 "//ash/common/strings:ash_test_strings", | 1398 "//ash/common/strings:ash_test_strings", |
| 1399 "//ash/resources:ash_test_resources_100_percent", | 1399 "//ash/resources:ash_test_resources_100_percent", |
| 1400 "//ash/resources:ash_test_resources_200_percent", | 1400 "//ash/resources:ash_test_resources_200_percent", |
| 1401 ] | 1401 ] |
| 1402 | 1402 |
| 1403 if (!use_x11) { | 1403 if (!use_x11) { |
| 1404 sources -= [ | 1404 sources -= [ "host/ash_window_tree_host_x11_unittest.cc" ] |
| 1405 "host/ash_window_tree_host_x11_unittest.cc", | |
| 1406 "touch/touch_transformer_controller_unittest.cc", | |
| 1407 ] | |
| 1408 } | 1405 } |
| 1409 | 1406 |
| 1410 # Usage of content should be in ash_with_content. | 1407 # Usage of content should be in ash_with_content. |
| 1411 assert_no_deps = [ | 1408 assert_no_deps = [ |
| 1412 "//content/public/browser", | 1409 "//content/public/browser", |
| 1413 "//content/public/common", | 1410 "//content/public/common", |
| 1414 ] | 1411 ] |
| 1415 } | 1412 } |
| 1416 | 1413 |
| 1417 executable("ash_shell_with_content") { | 1414 executable("ash_shell_with_content") { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 1430 "//content/public/app:both", | 1427 "//content/public/app:both", |
| 1431 "//device/bluetooth", | 1428 "//device/bluetooth", |
| 1432 ] | 1429 ] |
| 1433 | 1430 |
| 1434 data_deps = [ | 1431 data_deps = [ |
| 1435 "//ash/common/strings:ash_test_strings", | 1432 "//ash/common/strings:ash_test_strings", |
| 1436 "//ash/resources:ash_test_resources_with_content_100_percent", | 1433 "//ash/resources:ash_test_resources_with_content_100_percent", |
| 1437 "//ash/resources:ash_test_resources_200_percent", | 1434 "//ash/resources:ash_test_resources_200_percent", |
| 1438 ] | 1435 ] |
| 1439 } | 1436 } |
| OLD | NEW |