| 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 | 7 |
| 8 gypi_values = exec_script("//build/gypi_to_gn.py", | 8 gypi_values = exec_script("//build/gypi_to_gn.py", |
| 9 [ rebase_path("ash.gyp") ], | 9 [ rebase_path("ash.gyp") ], |
| 10 "scope", | 10 "scope", |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 if (!use_ozone) { | 111 if (!use_ozone) { |
| 112 sources -= [ "host/ash_window_tree_host_ozone.cc" ] | 112 sources -= [ "host/ash_window_tree_host_ozone.cc" ] |
| 113 } | 113 } |
| 114 } | 114 } |
| 115 | 115 |
| 116 component("ash_with_content") { | 116 component("ash_with_content") { |
| 117 sources = [ | 117 sources = [ |
| 118 "content_support/ash_with_content_export.h", | 118 "content_support/ash_with_content_export.h", |
| 119 "content_support/gpu_support_impl.cc", | 119 "content_support/gpu_support_impl.cc", |
| 120 "content_support/gpu_support_impl.h", | 120 "content_support/gpu_support_impl.h", |
| 121 "screensaver/screensaver_view.cc", | |
| 122 "screensaver/screensaver_view.h", | |
| 123 "keyboard_overlay/keyboard_overlay_delegate.cc", | 121 "keyboard_overlay/keyboard_overlay_delegate.cc", |
| 124 "keyboard_overlay/keyboard_overlay_delegate.h", | 122 "keyboard_overlay/keyboard_overlay_delegate.h", |
| 125 "keyboard_overlay/keyboard_overlay_view.cc", | 123 "keyboard_overlay/keyboard_overlay_view.cc", |
| 126 "keyboard_overlay/keyboard_overlay_view.h", | 124 "keyboard_overlay/keyboard_overlay_view.h", |
| 127 ] | 125 ] |
| 128 | 126 |
| 129 defines = [ "ASH_WITH_CONTENT_IMPLEMENTATION" ] | 127 defines = [ "ASH_WITH_CONTENT_IMPLEMENTATION" ] |
| 130 | 128 |
| 131 public_deps = [ | 129 public_deps = [ |
| 132 ":ash", | 130 ":ash", |
| (...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 "//content/test:test_support", | 366 "//content/test:test_support", |
| 369 "//skia", | 367 "//skia", |
| 370 "//testing/gtest", | 368 "//testing/gtest", |
| 371 "//ui/accessibility", | 369 "//ui/accessibility", |
| 372 ] | 370 ] |
| 373 | 371 |
| 374 if (is_chromeos) { | 372 if (is_chromeos) { |
| 375 deps += [ "//ui/display" ] | 373 deps += [ "//ui/display" ] |
| 376 } | 374 } |
| 377 } | 375 } |
| OLD | NEW |