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