| OLD | NEW |
| 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 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 "page_zoom.cc", | 238 "page_zoom.cc", |
| 239 "pepper_file_util.cc", | 239 "pepper_file_util.cc", |
| 240 "pepper_file_util.h", | 240 "pepper_file_util.h", |
| 241 "pepper_plugin_list.cc", | 241 "pepper_plugin_list.cc", |
| 242 "pepper_plugin_list.h", | 242 "pepper_plugin_list.h", |
| 243 "pepper_renderer_instance_data.cc", | 243 "pepper_renderer_instance_data.cc", |
| 244 "pepper_renderer_instance_data.h", | 244 "pepper_renderer_instance_data.h", |
| 245 "platform_notification_messages.h", | 245 "platform_notification_messages.h", |
| 246 "plugin_list.cc", | 246 "plugin_list.cc", |
| 247 "plugin_list.h", | 247 "plugin_list.h", |
| 248 "power_monitor_messages.h", | |
| 249 "process_type.cc", | 248 "process_type.cc", |
| 250 "push_messaging_messages.h", | 249 "push_messaging_messages.h", |
| 251 "quota_messages.h", | 250 "quota_messages.h", |
| 252 "render_process_messages.h", | 251 "render_process_messages.h", |
| 253 "resize_params.cc", | 252 "resize_params.cc", |
| 254 "resize_params.h", | 253 "resize_params.h", |
| 255 "resource_messages.cc", | 254 "resource_messages.cc", |
| 256 "resource_messages.h", | 255 "resource_messages.h", |
| 257 "resource_request.cc", | 256 "resource_request.cc", |
| 258 "resource_request.h", | 257 "resource_request.h", |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 578 "url_loader.mojom", | 577 "url_loader.mojom", |
| 579 "url_loader_factory.mojom", | 578 "url_loader_factory.mojom", |
| 580 "video_capture.mojom", | 579 "video_capture.mojom", |
| 581 ] | 580 ] |
| 582 | 581 |
| 583 import_dirs = [ "//mojo/services" ] | 582 import_dirs = [ "//mojo/services" ] |
| 584 | 583 |
| 585 public_deps = [ | 584 public_deps = [ |
| 586 "//components/leveldb/public/interfaces", | 585 "//components/leveldb/public/interfaces", |
| 587 "//content/public/common:interfaces", | 586 "//content/public/common:interfaces", |
| 587 "//device/power_monitor/public/interfaces", |
| 588 "//device/sensors/public/interfaces", | 588 "//device/sensors/public/interfaces", |
| 589 | 589 |
| 590 # TODO(mcasas): remove the following dep after https://crbug.com/653994 | 590 # TODO(mcasas): remove the following dep after https://crbug.com/653994 |
| 591 "//gpu/ipc/common:interfaces", | 591 "//gpu/ipc/common:interfaces", |
| 592 "//ipc:mojom", | 592 "//ipc:mojom", |
| 593 "//media/mojo/interfaces", | 593 "//media/mojo/interfaces", |
| 594 "//mojo/common:common_custom_types", | 594 "//mojo/common:common_custom_types", |
| 595 "//services/service_manager/public/interfaces", | 595 "//services/service_manager/public/interfaces", |
| 596 "//services/ui/public/interfaces", | 596 "//services/ui/public/interfaces", |
| 597 "//services/video_capture/public/interfaces", | 597 "//services/video_capture/public/interfaces", |
| 598 "//skia/public/interfaces", | 598 "//skia/public/interfaces", |
| 599 "//third_party/WebKit/public:mojo_bindings", | 599 "//third_party/WebKit/public:mojo_bindings", |
| 600 "//third_party/WebKit/public:new_wrapper_types_mojo_bindings", | 600 "//third_party/WebKit/public:new_wrapper_types_mojo_bindings", |
| 601 "//ui/base/mojo:mojo_bindings", | 601 "//ui/base/mojo:mojo_bindings", |
| 602 "//ui/gfx/geometry/mojo", | 602 "//ui/gfx/geometry/mojo", |
| 603 "//ui/gfx/mojo", | 603 "//ui/gfx/mojo", |
| 604 "//url/mojo:url_mojom_gurl", | 604 "//url/mojo:url_mojom_gurl", |
| 605 "//url/mojo:url_mojom_origin", | 605 "//url/mojo:url_mojom_origin", |
| 606 ] | 606 ] |
| 607 | 607 |
| 608 export_class_attribute = "CONTENT_EXPORT" | 608 export_class_attribute = "CONTENT_EXPORT" |
| 609 export_define = "CONTENT_IMPLEMENTATION=1" | 609 export_define = "CONTENT_IMPLEMENTATION=1" |
| 610 export_header = "content/common/content_export.h" | 610 export_header = "content/common/content_export.h" |
| 611 } | 611 } |
| OLD | NEW |