| 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 sources -= [ | 107 sources -= [ |
| 108 "touch/touch_transformer_controller.cc", | 108 "touch/touch_transformer_controller.cc", |
| 109 "touch/touch_transformer_controller.h", | 109 "touch/touch_transformer_controller.h", |
| 110 "touch/touchscreen_util.cc", | 110 "touch/touchscreen_util.cc", |
| 111 "touch/touchscreen_util.h", | 111 "touch/touchscreen_util.h", |
| 112 ] | 112 ] |
| 113 } | 113 } |
| 114 | 114 |
| 115 if (!use_ozone) { | 115 if (!use_ozone) { |
| 116 sources -= [ | 116 sources -= [ |
| 117 "display/mouse_cursor_event_filter_ozone.cc", | |
| 118 ] | |
| 119 } | |
| 120 | |
| 121 if (!use_ozone) { | |
| 122 sources -= [ | |
| 123 "host/ash_window_tree_host_ozone.cc", | 117 "host/ash_window_tree_host_ozone.cc", |
| 124 ] | 118 ] |
| 125 } | 119 } |
| 126 } | 120 } |
| 127 | 121 |
| 128 component("ash_with_content") { | 122 component("ash_with_content") { |
| 129 sources = [ | 123 sources = [ |
| 130 "content_support/ash_with_content_export.h", | 124 "content_support/ash_with_content_export.h", |
| 131 "content_support/gpu_support_impl.cc", | 125 "content_support/gpu_support_impl.cc", |
| 132 "content_support/gpu_support_impl.h", | 126 "content_support/gpu_support_impl.h", |
| (...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 "//content/test:test_support", | 374 "//content/test:test_support", |
| 381 "//skia", | 375 "//skia", |
| 382 "//testing/gtest", | 376 "//testing/gtest", |
| 383 "//ui/accessibility", | 377 "//ui/accessibility", |
| 384 ] | 378 ] |
| 385 | 379 |
| 386 if (is_chromeos) { | 380 if (is_chromeos) { |
| 387 deps += [ "//ui/display" ] | 381 deps += [ "//ui/display" ] |
| 388 } | 382 } |
| 389 } | 383 } |
| OLD | NEW |