| 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( | 8 gypi_values = exec_script( |
| 9 "//build/gypi_to_gn.py", | 9 "//build/gypi_to_gn.py", |
| 10 [ rebase_path("ash.gyp") ], | 10 [ rebase_path("ash.gyp") ], |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 "host/ash_window_tree_host_ozone.cc", | 115 "host/ash_window_tree_host_ozone.cc", |
| 116 ] | 116 ] |
| 117 } | 117 } |
| 118 } | 118 } |
| 119 | 119 |
| 120 component("ash_with_content") { | 120 component("ash_with_content") { |
| 121 sources = [ | 121 sources = [ |
| 122 "content_support/ash_with_content_export.h", | 122 "content_support/ash_with_content_export.h", |
| 123 "content_support/gpu_support_impl.cc", | 123 "content_support/gpu_support_impl.cc", |
| 124 "content_support/gpu_support_impl.h", | 124 "content_support/gpu_support_impl.h", |
| 125 "screensaver/screensaver_view.cc", | |
| 126 "screensaver/screensaver_view.h", | |
| 127 "keyboard_overlay/keyboard_overlay_delegate.cc", | 125 "keyboard_overlay/keyboard_overlay_delegate.cc", |
| 128 "keyboard_overlay/keyboard_overlay_delegate.h", | 126 "keyboard_overlay/keyboard_overlay_delegate.h", |
| 129 "keyboard_overlay/keyboard_overlay_view.cc", | 127 "keyboard_overlay/keyboard_overlay_view.cc", |
| 130 "keyboard_overlay/keyboard_overlay_view.h", | 128 "keyboard_overlay/keyboard_overlay_view.h", |
| 131 ] | 129 ] |
| 132 | 130 |
| 133 defines = [ "ASH_WITH_CONTENT_IMPLEMENTATION" ] | 131 defines = [ "ASH_WITH_CONTENT_IMPLEMENTATION" ] |
| 134 | 132 |
| 135 public_deps = [ | 133 public_deps = [ |
| 136 ":ash", | 134 ":ash", |
| (...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 "//content/test:test_support", | 373 "//content/test:test_support", |
| 376 "//skia", | 374 "//skia", |
| 377 "//testing/gtest", | 375 "//testing/gtest", |
| 378 "//ui/accessibility", | 376 "//ui/accessibility", |
| 379 ] | 377 ] |
| 380 | 378 |
| 381 if (is_chromeos) { | 379 if (is_chromeos) { |
| 382 deps += [ "//ui/display" ] | 380 deps += [ "//ui/display" ] |
| 383 } | 381 } |
| 384 } | 382 } |
| OLD | NEW |