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

Side by Side Diff: mojo/services/html_viewer/BUILD.gn

Issue 1051593003: Refactors code for WebGestureCurve to ui/events/gestures/blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix gn 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("//testing/test.gni") 5 import("//testing/test.gni")
6 import("//third_party/mojo/src/mojo/public/mojo.gni") 6 import("//third_party/mojo/src/mojo/public/mojo.gni")
7 import("//third_party/mojo/src/mojo/public/mojo_application.gni") 7 import("//third_party/mojo/src/mojo/public/mojo_application.gni")
8 8
9 action("generate_blink_resource_map") { 9 action("generate_blink_resource_map") {
10 script = "//mojo/services/html_viewer/generate_blink_resource_map.py" 10 script = "//mojo/services/html_viewer/generate_blink_resource_map.py"
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 "//third_party/mojo_services/src/accessibility/public/interfaces", 99 "//third_party/mojo_services/src/accessibility/public/interfaces",
100 "//third_party/mojo_services/src/clipboard/public/interfaces", 100 "//third_party/mojo_services/src/clipboard/public/interfaces",
101 "//third_party/mojo_services/src/content_handler/public/interfaces", 101 "//third_party/mojo_services/src/content_handler/public/interfaces",
102 "//third_party/mojo_services/src/gpu/public/interfaces", 102 "//third_party/mojo_services/src/gpu/public/interfaces",
103 "//third_party/mojo_services/src/input_events/public/interfaces", 103 "//third_party/mojo_services/src/input_events/public/interfaces",
104 "//third_party/mojo_services/src/navigation/public/interfaces", 104 "//third_party/mojo_services/src/navigation/public/interfaces",
105 "//third_party/mojo_services/src/surfaces/public/interfaces", 105 "//third_party/mojo_services/src/surfaces/public/interfaces",
106 "//ui/events", 106 "//ui/events",
107 "//ui/events:gesture_detection", 107 "//ui/events:gesture_detection",
108 "//ui/events/blink", 108 "//ui/events/blink",
109 "//ui/events/gestures/blink",
109 "//ui/gfx/geometry", 110 "//ui/gfx/geometry",
110 "//ui/native_theme", 111 "//ui/native_theme",
111 "//ui/resources:ui_test_pak", 112 "//ui/resources:ui_test_pak",
112 "//url", 113 "//url",
113 ] 114 ]
114 115
115 public_deps = [ 116 public_deps = [
116 "//third_party/WebKit/public:blink", 117 "//third_party/WebKit/public:blink",
117 "//third_party/mojo/src/mojo/public/cpp/bindings", 118 "//third_party/mojo/src/mojo/public/cpp/bindings",
118 "//third_party/mojo_services/src/view_manager/public/cpp", 119 "//third_party/mojo_services/src/view_manager/public/cpp",
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 output_name = "html_viewer_unittests" 186 output_name = "html_viewer_unittests"
186 sources = [ 187 sources = [
187 "ax_provider_impl_unittest.cc", 188 "ax_provider_impl_unittest.cc",
188 "discardable_memory_allocator_unittest.cc", 189 "discardable_memory_allocator_unittest.cc",
189 ] 190 ]
190 deps = [ 191 deps = [
191 ":lib", 192 ":lib",
192 "//base/test:run_all_unittests", 193 "//base/test:run_all_unittests",
193 ] 194 ]
194 } 195 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698