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

Side by Side Diff: content/common/BUILD.gn

Issue 2310563002: Adds routed interface support between RenderFrameHost and RenderFrame (Closed)
Patch Set: . Created 4 years, 3 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("//media/media_options.gni") 7 import("//media/media_options.gni")
8 import("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") 9 import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
10 if (is_mac) { 10 if (is_mac) {
(...skipping 26 matching lines...) Expand all
37 "android/media_metadata_android.h", 37 "android/media_metadata_android.h",
38 "android/resource_request_body_android.cc", 38 "android/resource_request_body_android.cc",
39 "android/resource_request_body_android.h", 39 "android/resource_request_body_android.h",
40 "android/sync_compositor_messages.cc", 40 "android/sync_compositor_messages.cc",
41 "android/sync_compositor_messages.h", 41 "android/sync_compositor_messages.h",
42 "android/sync_compositor_statics.cc", 42 "android/sync_compositor_statics.cc",
43 "android/sync_compositor_statics.h", 43 "android/sync_compositor_statics.h",
44 "appcache_interfaces.cc", 44 "appcache_interfaces.cc",
45 "appcache_interfaces.h", 45 "appcache_interfaces.h",
46 "appcache_messages.h", 46 "appcache_messages.h",
47 "associated_interface_provider_impl.cc",
48 "associated_interface_provider_impl.h",
49 "associated_interface_registry_impl.cc",
50 "associated_interface_registry_impl.h",
47 "ax_content_node_data.cc", 51 "ax_content_node_data.cc",
48 "ax_content_node_data.h", 52 "ax_content_node_data.h",
49 "bluetooth/web_bluetooth_device_id.cc", 53 "bluetooth/web_bluetooth_device_id.cc",
50 "bluetooth/web_bluetooth_device_id.h", 54 "bluetooth/web_bluetooth_device_id.h",
51 "browser_plugin/browser_plugin_constants.cc", 55 "browser_plugin/browser_plugin_constants.cc",
52 "browser_plugin/browser_plugin_constants.h", 56 "browser_plugin/browser_plugin_constants.h",
53 "browser_plugin/browser_plugin_messages.h", 57 "browser_plugin/browser_plugin_messages.h",
54 "cache_storage/cache_storage_messages.h", 58 "cache_storage/cache_storage_messages.h",
55 "cache_storage/cache_storage_types.cc", 59 "cache_storage/cache_storage_types.cc",
56 "cache_storage/cache_storage_types.h", 60 "cache_storage/cache_storage_types.h",
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
338 configs += [ 342 configs += [
339 "//content:content_implementation", 343 "//content:content_implementation",
340 "//build/config:precompiled_headers", 344 "//build/config:precompiled_headers",
341 "//build/config/compiler:no_size_t_to_int_warning", 345 "//build/config/compiler:no_size_t_to_int_warning",
342 "//media/gpu:gpu_config", 346 "//media/gpu:gpu_config",
343 ] 347 ]
344 348
345 public_deps = [ 349 public_deps = [
346 ":mojo_bindings", 350 ":mojo_bindings",
347 "//cc", 351 "//cc",
352 "//content/public/common:interfaces",
348 "//gpu/command_buffer/common", 353 "//gpu/command_buffer/common",
349 "//ipc", 354 "//ipc",
350 "//third_party/WebKit/public:blink_headers", 355 "//third_party/WebKit/public:blink_headers",
351 ] 356 ]
352 deps = [ 357 deps = [
353 # This looks needless as we have :mojo_bindings in public_deps, but it's 358 # This looks needless as we have :mojo_bindings in public_deps, but it's
354 # needed because of allow_circular_includes_from. 359 # needed because of allow_circular_includes_from.
355 ":mojo_bindings_cpp_sources", 360 ":mojo_bindings_cpp_sources",
356 "//base", 361 "//base",
357 "//base/third_party/dynamic_annotations", 362 "//base/third_party/dynamic_annotations",
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
573 "//third_party/WebKit/public:mojo_bindings", 578 "//third_party/WebKit/public:mojo_bindings",
574 "//ui/gfx/geometry/mojo", 579 "//ui/gfx/geometry/mojo",
575 "//url/mojo:url_mojom_gurl", 580 "//url/mojo:url_mojom_gurl",
576 "//url/mojo:url_mojom_origin", 581 "//url/mojo:url_mojom_origin",
577 ] 582 ]
578 583
579 export_class_attribute = "CONTENT_EXPORT" 584 export_class_attribute = "CONTENT_EXPORT"
580 export_define = "CONTENT_IMPLEMENTATION=1" 585 export_define = "CONTENT_IMPLEMENTATION=1"
581 export_header = "content/common/content_export.h" 586 export_header = "content/common/content_export.h"
582 } 587 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698