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

Side by Side Diff: BUILD.gn

Issue 759433002: Reland: Move TouchSelectionController from content to ui (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Excluded ui/touch_selection from Windows GN build Created 6 years 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 | android_webview/java_library_common.mk » ('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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # This is the root build file for GN. GN will start processing by loading this 5 # This is the root build file for GN. GN will start processing by loading this
6 # file, and recursively load all dependencies until all dependencies are either 6 # file, and recursively load all dependencies until all dependencies are either
7 # resolved or known not to exist (which will cause the build to fail). So if 7 # resolved or known not to exist (which will cause the build to fail). So if
8 # you add a new build file, there must be some path of dependencies from this 8 # you add a new build file, there must be some path of dependencies from this
9 # file to your new one or GN won't know about it. 9 # file to your new one or GN won't know about it.
10 10
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 "//ui/display", 126 "//ui/display",
127 "//ui/events", 127 "//ui/events",
128 "//ui/gfx", 128 "//ui/gfx",
129 "//ui/gl", 129 "//ui/gl",
130 "//ui/keyboard", 130 "//ui/keyboard",
131 "//ui/native_theme", 131 "//ui/native_theme",
132 "//ui/resources", 132 "//ui/resources",
133 "//ui/snapshot", 133 "//ui/snapshot",
134 "//ui/strings", 134 "//ui/strings",
135 "//ui/surface", 135 "//ui/surface",
136 "//ui/touch_selection",
136 "//ui/views", 137 "//ui/views",
137 "//ui/views/controls/webview", 138 "//ui/views/controls/webview",
138 "//ui/web_dialogs", 139 "//ui/web_dialogs",
139 "//url", 140 "//url",
140 "//v8:v8", 141 "//v8:v8",
141 ] 142 ]
142 deps += root_extra_deps 143 deps += root_extra_deps
143 144
144 if (!is_win) { 145 if (!is_win) {
145 deps += [ "//breakpad:symupload" ] 146 deps += [ "//breakpad:symupload" ]
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 "//third_party/usrsctp", 291 "//third_party/usrsctp",
291 "//ui/app_list", 292 "//ui/app_list",
292 "//ui/aura", 293 "//ui/aura",
293 "//ui/keyboard", 294 "//ui/keyboard",
294 "//ui/views", 295 "//ui/views",
295 "//ui/views/controls/webview", 296 "//ui/views/controls/webview",
296 "//ui/web_dialogs", 297 "//ui/web_dialogs",
297 ] 298 ]
298 } 299 }
299 300
301 if (is_mac || is_ios) {
302 deps -= [
303 "//ui/touch_selection",
304 ]
305 }
306
300 if (is_win) { 307 if (is_win) {
301 deps -= [ 308 deps -= [
302 "//apps", 309 "//apps",
303 "//ash", 310 "//ash",
304 "//chrome/browser", 311 "//chrome/browser",
305 "//chrome/browser/devtools", 312 "//chrome/browser/devtools",
306 "//chrome/common", 313 "//chrome/common",
307 "//chrome/plugin", 314 "//chrome/plugin",
308 "//chrome/renderer", 315 "//chrome/renderer",
309 "//chrome/test", 316 "//chrome/test",
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 "//ui/aura", 354 "//ui/aura",
348 "//ui/base", 355 "//ui/base",
349 "//ui/display", 356 "//ui/display",
350 "//ui/events", 357 "//ui/events",
351 "//ui/gfx", 358 "//ui/gfx",
352 "//ui/gl", 359 "//ui/gl",
353 "//ui/keyboard", 360 "//ui/keyboard",
354 "//ui/native_theme", 361 "//ui/native_theme",
355 "//ui/snapshot", 362 "//ui/snapshot",
356 "//ui/surface", 363 "//ui/surface",
364 "//ui/touch_selection",
357 "//ui/views", 365 "//ui/views",
358 "//ui/views/controls/webview", 366 "//ui/views/controls/webview",
359 "//ui/web_dialogs", 367 "//ui/web_dialogs",
360 "//ui/wm", 368 "//ui/wm",
361 ] 369 ]
362 } 370 }
363 } 371 }
OLDNEW
« no previous file with comments | « no previous file | android_webview/java_library_common.mk » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698