Chromium Code Reviews| 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 1457 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1468 # Talks to ChromeOS system services. | 1468 # Talks to ChromeOS system services. |
| 1469 "wm/lock_state_controller_unittest.cc", | 1469 "wm/lock_state_controller_unittest.cc", |
| 1470 | 1470 |
| 1471 # Maximize mode is only available on Chrome OS. | 1471 # Maximize mode is only available on Chrome OS. |
| 1472 "wm/maximize_mode/maximize_mode_controller_unittest.cc", | 1472 "wm/maximize_mode/maximize_mode_controller_unittest.cc", |
| 1473 "wm/maximize_mode/maximize_mode_window_manager_unittest.cc", | 1473 "wm/maximize_mode/maximize_mode_window_manager_unittest.cc", |
| 1474 "wm/workspace/workspace_window_resizer_unittest.cc", | 1474 "wm/workspace/workspace_window_resizer_unittest.cc", |
| 1475 ] | 1475 ] |
| 1476 } | 1476 } |
| 1477 | 1477 |
| 1478 if (!use_x11 || !is_chromeos) { | 1478 if (!(use_x11 || use_ozone) || !is_chromeos) { |
|
sky
2016/12/12 02:06:48
You can remove the is_chromeos check here as ash i
malaykeshav
2016/12/20 09:56:04
Done
| |
| 1479 sources -= [ "touch/touch_transformer_controller_unittest.cc" ] | 1479 sources -= [ "touch/touch_transformer_controller_unittest.cc" ] |
| 1480 } | 1480 } |
| 1481 | 1481 |
| 1482 # Usage of content should be in ash_with_content. | 1482 # Usage of content should be in ash_with_content. |
| 1483 assert_no_deps = [ | 1483 assert_no_deps = [ |
| 1484 "//content/public/browser", | 1484 "//content/public/browser", |
| 1485 "//content/public/common", | 1485 "//content/public/common", |
| 1486 ] | 1486 ] |
| 1487 } | 1487 } |
| 1488 | 1488 |
| (...skipping 22 matching lines...) Expand all Loading... | |
| 1511 if (is_win) { | 1511 if (is_win) { |
| 1512 configs -= [ "//build/config/win:console" ] | 1512 configs -= [ "//build/config/win:console" ] |
| 1513 configs += [ "//build/config/win:windowed" ] | 1513 configs += [ "//build/config/win:windowed" ] |
| 1514 deps += [ "//sandbox" ] | 1514 deps += [ "//sandbox" ] |
| 1515 } | 1515 } |
| 1516 | 1516 |
| 1517 if (is_chromeos) { | 1517 if (is_chromeos) { |
| 1518 deps += [ "//device/bluetooth" ] | 1518 deps += [ "//device/bluetooth" ] |
| 1519 } | 1519 } |
| 1520 } | 1520 } |
| OLD | NEW |