| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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_delegate.cc", |
| 78 "common/cast_config_delegate.h", | 78 "common/cast_config_delegate.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/devtools_dom_agent.cc", | 81 "common/devtools/ash_devtools_dom_agent.cc", |
| 82 "common/devtools/devtools_dom_agent.h", | 82 "common/devtools/ash_devtools_dom_agent.h", |
| 83 "common/drag_drop/drag_image_view.cc", | 83 "common/drag_drop/drag_image_view.cc", |
| 84 "common/drag_drop/drag_image_view.h", | 84 "common/drag_drop/drag_image_view.h", |
| 85 "common/focus_cycler.cc", | 85 "common/focus_cycler.cc", |
| 86 "common/focus_cycler.h", | 86 "common/focus_cycler.h", |
| 87 "common/frame/caption_buttons/caption_button_types.h", | 87 "common/frame/caption_buttons/caption_button_types.h", |
| 88 "common/frame/caption_buttons/frame_caption_button.cc", | 88 "common/frame/caption_buttons/frame_caption_button.cc", |
| 89 "common/frame/caption_buttons/frame_caption_button.h", | 89 "common/frame/caption_buttons/frame_caption_button.h", |
| 90 "common/frame/caption_buttons/frame_caption_button_container_view.cc", | 90 "common/frame/caption_buttons/frame_caption_button_container_view.cc", |
| 91 "common/frame/caption_buttons/frame_caption_button_container_view.h", | 91 "common/frame/caption_buttons/frame_caption_button_container_view.h", |
| 92 "common/frame/caption_buttons/frame_size_button.cc", | 92 "common/frame/caption_buttons/frame_size_button.cc", |
| (...skipping 1401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1494 if (is_win) { | 1494 if (is_win) { |
| 1495 configs -= [ "//build/config/win:console" ] | 1495 configs -= [ "//build/config/win:console" ] |
| 1496 configs += [ "//build/config/win:windowed" ] | 1496 configs += [ "//build/config/win:windowed" ] |
| 1497 deps += [ "//sandbox" ] | 1497 deps += [ "//sandbox" ] |
| 1498 } | 1498 } |
| 1499 | 1499 |
| 1500 if (is_chromeos) { | 1500 if (is_chromeos) { |
| 1501 deps += [ "//device/bluetooth" ] | 1501 deps += [ "//device/bluetooth" ] |
| 1502 } | 1502 } |
| 1503 } | 1503 } |
| OLD | NEW |