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

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: Fixed test failures on Mac Created 5 years, 8 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 10 matching lines...) Expand all
21 21
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/native_theme", 28 "//ui/native_theme",
29 "//ui/resources", 29 "//ui/resources",
30 "//ui/strings", 30 "//ui/strings",
31 "//ui/touch_selection",
31 "//url", 32 "//url",
32 ] 33 ]
33 34
34 public_deps = [ 35 public_deps = [
35 "//base", 36 "//base",
36 "//ui/accessibility:ax_gen", 37 "//ui/accessibility:ax_gen",
37 "//ui/base", 38 "//ui/base",
38 "//ui/base/ime", 39 "//ui/base/ime",
39 "//ui/compositor", 40 "//ui/compositor",
40 "//ui/events", 41 "//ui/events",
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 "//ui/base:test_support", 188 "//ui/base:test_support",
188 "//ui/compositor:test_support", 189 "//ui/compositor:test_support",
189 "//ui/events:test_support", 190 "//ui/events:test_support",
190 "//ui/events:events_base", 191 "//ui/events:events_base",
191 "//ui/events/platform", 192 "//ui/events/platform",
192 "//ui/gfx", 193 "//ui/gfx",
193 "//ui/gfx/geometry", 194 "//ui/gfx/geometry",
194 "//ui/gl", 195 "//ui/gl",
195 "//ui/resources", 196 "//ui/resources",
196 "//ui/strings", 197 "//ui/strings",
198 "//ui/touch_selection",
197 "//url", 199 "//url",
198 ] 200 ]
199 201
200 if (is_win) { 202 if (is_win) {
201 deps += [ 203 deps += [
202 "//third_party/iaccessible2", 204 "//third_party/iaccessible2",
203 "//third_party/wtl", 205 "//third_party/wtl",
204 ] 206 ]
205 libs = [ 207 libs = [
206 "imm32.lib", 208 "imm32.lib",
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 "//base/test:test_support", 286 "//base/test:test_support",
285 "//skia", 287 "//skia",
286 "//testing/gtest", 288 "//testing/gtest",
287 "//ui/compositor", 289 "//ui/compositor",
288 "//ui/resources", 290 "//ui/resources",
289 "//ui/resources:ui_test_pak", 291 "//ui/resources:ui_test_pak",
290 "//ui/strings", 292 "//ui/strings",
291 ] 293 ]
292 } 294 }
293 } 295 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698