| 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 assert(use_aura) | 10 assert(use_aura) |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 "common/accelerators/exit_warning_handler.cc", | 67 "common/accelerators/exit_warning_handler.cc", |
| 68 "common/accelerators/exit_warning_handler.h", | 68 "common/accelerators/exit_warning_handler.h", |
| 69 "common/accessibility_delegate.h", | 69 "common/accessibility_delegate.h", |
| 70 "common/accessibility_types.h", | 70 "common/accessibility_types.h", |
| 71 "common/ash_constants.cc", | 71 "common/ash_constants.cc", |
| 72 "common/ash_constants.h", | 72 "common/ash_constants.h", |
| 73 "common/ash_layout_constants.cc", | 73 "common/ash_layout_constants.cc", |
| 74 "common/ash_layout_constants.h", | 74 "common/ash_layout_constants.h", |
| 75 "common/ash_switches.cc", | 75 "common/ash_switches.cc", |
| 76 "common/ash_switches.h", | 76 "common/ash_switches.h", |
| 77 "common/cast_config_delegate.cc", | 77 "common/cast_config_client_proxy.cc", |
| 78 "common/cast_config_delegate.h", | 78 "common/cast_config_client_proxy.h", |
| 79 "common/default_accessibility_delegate.cc", | 79 "common/default_accessibility_delegate.cc", |
| 80 "common/default_accessibility_delegate.h", | 80 "common/default_accessibility_delegate.h", |
| 81 "common/devtools/ash_devtools_css_agent.cc", | 81 "common/devtools/ash_devtools_css_agent.cc", |
| 82 "common/devtools/ash_devtools_css_agent.h", | 82 "common/devtools/ash_devtools_css_agent.h", |
| 83 "common/devtools/ash_devtools_dom_agent.cc", | 83 "common/devtools/ash_devtools_dom_agent.cc", |
| 84 "common/devtools/ash_devtools_dom_agent.h", | 84 "common/devtools/ash_devtools_dom_agent.h", |
| 85 "common/drag_drop/drag_image_view.cc", | 85 "common/drag_drop/drag_image_view.cc", |
| 86 "common/drag_drop/drag_image_view.h", | 86 "common/drag_drop/drag_image_view.h", |
| 87 "common/focus_cycler.cc", | 87 "common/focus_cycler.cc", |
| 88 "common/focus_cycler.h", | 88 "common/focus_cycler.h", |
| (...skipping 1414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1503 if (is_win) { | 1503 if (is_win) { |
| 1504 configs -= [ "//build/config/win:console" ] | 1504 configs -= [ "//build/config/win:console" ] |
| 1505 configs += [ "//build/config/win:windowed" ] | 1505 configs += [ "//build/config/win:windowed" ] |
| 1506 deps += [ "//sandbox" ] | 1506 deps += [ "//sandbox" ] |
| 1507 } | 1507 } |
| 1508 | 1508 |
| 1509 if (is_chromeos) { | 1509 if (is_chromeos) { |
| 1510 deps += [ "//device/bluetooth" ] | 1510 deps += [ "//device/bluetooth" ] |
| 1511 } | 1511 } |
| 1512 } | 1512 } |
| OLD | NEW |