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