Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(757)

Side by Side Diff: ash/BUILD.gn

Issue 611423002: [WIP][Ozone] Support external touchscreens (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ozone-touchscreen
Patch Set: . Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ash/ash.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 "display/resolution_notification_controller.cc", 94 "display/resolution_notification_controller.cc",
95 "display/resolution_notification_controller.h", 95 "display/resolution_notification_controller.h",
96 "system/tray/media_security/media_capture_observer.h", 96 "system/tray/media_security/media_capture_observer.h",
97 "system/tray/media_security/multi_profile_media_tray_item.cc", 97 "system/tray/media_security/multi_profile_media_tray_item.cc",
98 "system/tray/media_security/multi_profile_media_tray_item.h", 98 "system/tray/media_security/multi_profile_media_tray_item.h",
99 ] 99 ]
100 } 100 }
101 101
102 if (!use_x11 || !is_chromeos) { 102 if (!use_x11 || !is_chromeos) {
103 sources -= [ 103 sources -= [
104 "touch/touch_transformer_controller.cc", 104 "touch/touch_transformer_controller_x11.cc",
105 "touch/touch_transformer_controller.h", 105 "touch/touch_transformer_controller.h",
106 "touch/touchscreen_util.cc", 106 "touch/touchscreen_util.cc",
107 "touch/touchscreen_util.h", 107 "touch/touchscreen_util.h",
108 ] 108 ]
109 } 109 }
110 110
111 if (!use_ozone) { 111 if (!use_ozone) {
112 sources -= [ 112 sources -= [
113 "host/ash_window_tree_host_ozone.cc", 113 "host/ash_window_tree_host_ozone.cc",
114 "touch/touch_transformer_controller_ozone.cc",
114 ] 115 ]
115 } 116 }
116 } 117 }
117 118
118 component("ash_with_content") { 119 component("ash_with_content") {
119 sources = [ 120 sources = [
120 "content_support/ash_with_content_export.h", 121 "content_support/ash_with_content_export.h",
121 "content_support/gpu_support_impl.cc", 122 "content_support/gpu_support_impl.cc",
122 "content_support/gpu_support_impl.h", 123 "content_support/gpu_support_impl.h",
123 "screensaver/screensaver_view.cc", 124 "screensaver/screensaver_view.cc",
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 "//content/test:test_support", 370 "//content/test:test_support",
370 "//skia", 371 "//skia",
371 "//testing/gtest", 372 "//testing/gtest",
372 "//ui/accessibility", 373 "//ui/accessibility",
373 ] 374 ]
374 375
375 if (is_chromeos) { 376 if (is_chromeos) {
376 deps += [ "//ui/display" ] 377 deps += [ "//ui/display" ]
377 } 378 }
378 } 379 }
OLDNEW
« no previous file with comments | « no previous file | ash/ash.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698