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

Side by Side Diff: components/html_viewer/BUILD.gn

Issue 1484013003: mustash: Implement basic input event routing in renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed dependency for unit test Created 5 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 | components/html_viewer/DEPS » ('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_overrides/v8.gni") 5 import("//build_overrides/v8.gni")
6 import("//mojo/public/mojo_application.gni") 6 import("//mojo/public/mojo_application.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//tools/grit/grit_rule.gni") 8 import("//tools/grit/grit_rule.gni")
9 import("//tools/grit/repack.gni") 9 import("//tools/grit/repack.gni")
10 10
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 } 56 }
57 57
58 source_set("lib") { 58 source_set("lib") {
59 sources = [ 59 sources = [
60 "ax_provider_impl.cc", 60 "ax_provider_impl.cc",
61 "ax_provider_impl.h", 61 "ax_provider_impl.h",
62 "blink_basic_type_converters.cc", 62 "blink_basic_type_converters.cc",
63 "blink_basic_type_converters.h", 63 "blink_basic_type_converters.h",
64 "blink_find_type_converters.cc", 64 "blink_find_type_converters.cc",
65 "blink_find_type_converters.h", 65 "blink_find_type_converters.h",
66 "blink_input_events_type_converters.cc",
67 "blink_input_events_type_converters.h",
68 "blink_platform_impl.cc", 66 "blink_platform_impl.cc",
69 "blink_platform_impl.h", 67 "blink_platform_impl.h",
70 "blink_resource_constants.h", 68 "blink_resource_constants.h",
71 "blink_settings.cc", 69 "blink_settings.cc",
72 "blink_settings.h", 70 "blink_settings.h",
73 "blink_settings_impl.cc", 71 "blink_settings_impl.cc",
74 "blink_settings_impl.h", 72 "blink_settings_impl.h",
75 "blink_text_input_type_converters.cc", 73 "blink_text_input_type_converters.cc",
76 "blink_text_input_type_converters.h", 74 "blink_text_input_type_converters.h",
77 "blink_url_request_type_converters.cc", 75 "blink_url_request_type_converters.cc",
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 "//gin", 168 "//gin",
171 "//gpu/blink:blink", 169 "//gpu/blink:blink",
172 "//gpu/command_buffer/common:gles2_utils", 170 "//gpu/command_buffer/common:gles2_utils",
173 "//media", 171 "//media",
174 "//media:shared_memory_support", 172 "//media:shared_memory_support",
175 "//media/blink", 173 "//media/blink",
176 "//media/mojo", 174 "//media/mojo",
177 "//mojo/application/public/cpp", 175 "//mojo/application/public/cpp",
178 "//mojo/application/public/interfaces", 176 "//mojo/application/public/interfaces",
179 "//mojo/common", 177 "//mojo/common",
178 "//mojo/converters/blink",
180 "//mojo/converters/surfaces", 179 "//mojo/converters/surfaces",
181 "//mojo/gles2:headers", 180 "//mojo/gles2:headers",
182 "//mojo/gpu:mojo_gles2_implementation", 181 "//mojo/gpu:mojo_gles2_implementation",
183 "//mojo/logging", 182 "//mojo/logging",
184 "//mojo/message_pump", 183 "//mojo/message_pump",
185 "//mojo/platform_handle", 184 "//mojo/platform_handle",
186 "//mojo/public/cpp/environment:environment", 185 "//mojo/public/cpp/environment:environment",
187 "//mojo/services/network/public/cpp", 186 "//mojo/services/network/public/cpp",
188 "//mojo/services/network/public/interfaces", 187 "//mojo/services/network/public/interfaces",
189 "//mojo/services/tracing/public/cpp", 188 "//mojo/services/tracing/public/cpp",
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 "discardable_memory_allocator_unittest.cc", 308 "discardable_memory_allocator_unittest.cc",
310 "input_events_unittest.cc", 309 "input_events_unittest.cc",
311 "run_all_unittests.cc", 310 "run_all_unittests.cc",
312 ] 311 ]
313 deps = [ 312 deps = [
314 ":lib", 313 ":lib",
315 ":pak", 314 ":pak",
316 "//base/test:test_support", 315 "//base/test:test_support",
317 "//components/scheduler", 316 "//components/scheduler",
318 "//gin", 317 "//gin",
318 "//mojo/converters/blink",
319 "//mojo/converters/input_events", 319 "//mojo/converters/input_events",
320 "//mojo/gles2", 320 "//mojo/gles2",
321 "//mojo/platform_handle:platform_handle_impl", 321 "//mojo/platform_handle:platform_handle_impl",
322 "//testing/gtest:gtest", 322 "//testing/gtest:gtest",
323 "//third_party/mojo/src/mojo/edk/system", 323 "//third_party/mojo/src/mojo/edk/system",
324 "//ui/base", 324 "//ui/base",
325 "//ui/events", 325 "//ui/events",
326 "//ui/events:test_support", 326 "//ui/events:test_support",
327 "//ui/mojo/init", 327 "//ui/mojo/init",
328 ] 328 ]
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 ] 363 ]
364 364
365 data_deps = [ 365 data_deps = [
366 ":html_viewer", 366 ":html_viewer",
367 ] 367 ]
368 368
369 if (is_linux && !is_android) { 369 if (is_linux && !is_android) {
370 data_deps += [ "//components/font_service" ] 370 data_deps += [ "//components/font_service" ]
371 } 371 }
372 } 372 }
OLDNEW
« no previous file with comments | « no previous file | components/html_viewer/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698