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

Side by Side Diff: ui/views/BUILD.gn

Issue 698253004: Reland: Implement Aura side of unified touch text selection for contents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Improved tap-on-selection tests Created 5 years, 9 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
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 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 gypi_values = exec_script("//build/gypi_to_gn.py", 9 gypi_values = exec_script("//build/gypi_to_gn.py",
10 [ rebase_path("views.gyp") ], 10 [ rebase_path("views.gyp") ],
(...skipping 11 matching lines...) Expand all
22 deps = [ 22 deps = [
23 "//base:i18n", 23 "//base:i18n",
24 "//base/third_party/dynamic_annotations", 24 "//base/third_party/dynamic_annotations",
25 "//skia", 25 "//skia",
26 "//third_party/icu", 26 "//third_party/icu",
27 "//ui/accessibility", 27 "//ui/accessibility",
28 "//ui/aura", 28 "//ui/aura",
29 "//ui/native_theme", 29 "//ui/native_theme",
30 "//ui/resources", 30 "//ui/resources",
31 "//ui/strings", 31 "//ui/strings",
32 "//ui/touch_selection",
32 "//ui/wm", 33 "//ui/wm",
33 "//url", 34 "//url",
34 ] 35 ]
35 36
36 public_deps = [ 37 public_deps = [
37 "//base", 38 "//base",
38 "//ui/accessibility:ax_gen", 39 "//ui/accessibility:ax_gen",
39 "//ui/base", 40 "//ui/base",
40 "//ui/base/ime", 41 "//ui/base/ime",
41 "//ui/compositor", 42 "//ui/compositor",
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 "//ui/base:test_support", 183 "//ui/base:test_support",
183 "//ui/compositor:test_support", 184 "//ui/compositor:test_support",
184 "//ui/events:test_support", 185 "//ui/events:test_support",
185 "//ui/events:events_base", 186 "//ui/events:events_base",
186 "//ui/events/platform", 187 "//ui/events/platform",
187 "//ui/gfx", 188 "//ui/gfx",
188 "//ui/gfx/geometry", 189 "//ui/gfx/geometry",
189 "//ui/gl", 190 "//ui/gl",
190 "//ui/resources", 191 "//ui/resources",
191 "//ui/strings", 192 "//ui/strings",
193 "//ui/touch_selection",
192 "//ui/wm", 194 "//ui/wm",
193 "//url", 195 "//url",
194 ] 196 ]
195 197
196 if (is_chromeos) { 198 if (is_chromeos) {
197 sources -= [ "ime/input_method_bridge_unittest.cc" ] 199 sources -= [ "ime/input_method_bridge_unittest.cc" ]
198 } 200 }
199 201
200 if (is_win) { 202 if (is_win) {
201 deps += [ 203 deps += [
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 "//testing/gtest", 282 "//testing/gtest",
281 "//ui/aura", 283 "//ui/aura",
282 "//ui/compositor", 284 "//ui/compositor",
283 "//ui/resources", 285 "//ui/resources",
284 "//ui/resources:ui_test_pak", 286 "//ui/resources:ui_test_pak",
285 "//ui/strings", 287 "//ui/strings",
286 "//ui/wm", 288 "//ui/wm",
287 ] 289 ]
288 } 290 }
289 } 291 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698