| 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("//ppapi/features/features.gni") | 9 import("//ppapi/features/features.gni") |
| 10 import("//sandbox/features.gni") | 10 import("//sandbox/features.gni") |
| (...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 | 333 |
| 334 configs += [ | 334 configs += [ |
| 335 "//content:content_implementation", | 335 "//content:content_implementation", |
| 336 "//build/config:precompiled_headers", | 336 "//build/config:precompiled_headers", |
| 337 "//build/config/compiler:no_size_t_to_int_warning", | 337 "//build/config/compiler:no_size_t_to_int_warning", |
| 338 "//media/gpu:gpu_config", | 338 "//media/gpu:gpu_config", |
| 339 ] | 339 ] |
| 340 | 340 |
| 341 public_deps = [ | 341 public_deps = [ |
| 342 ":mojo_bindings", | 342 ":mojo_bindings", |
| 343 ":mojo_bindings_with_js", |
| 343 "//cc", | 344 "//cc", |
| 344 "//gpu/command_buffer/common", | 345 "//gpu/command_buffer/common", |
| 345 "//ipc", | 346 "//ipc", |
| 346 "//third_party/WebKit/public:blink_headers", | 347 "//third_party/WebKit/public:blink_headers", |
| 347 ] | 348 ] |
| 348 deps = [ | 349 deps = [ |
| 349 "//base", | 350 "//base", |
| 350 "//base/third_party/dynamic_annotations", | 351 "//base/third_party/dynamic_annotations", |
| 351 "//build/util:webkit_version", | 352 "//build/util:webkit_version", |
| 352 "//cc/ipc", | 353 "//cc/ipc", |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 "//ui/gfx/geometry/mojo", | 602 "//ui/gfx/geometry/mojo", |
| 602 "//ui/gfx/mojo", | 603 "//ui/gfx/mojo", |
| 603 "//url/mojo:url_mojom_gurl", | 604 "//url/mojo:url_mojom_gurl", |
| 604 "//url/mojo:url_mojom_origin", | 605 "//url/mojo:url_mojom_origin", |
| 605 ] | 606 ] |
| 606 | 607 |
| 607 export_class_attribute = "CONTENT_EXPORT" | 608 export_class_attribute = "CONTENT_EXPORT" |
| 608 export_define = "CONTENT_IMPLEMENTATION=1" | 609 export_define = "CONTENT_IMPLEMENTATION=1" |
| 609 export_header = "content/common/content_export.h" | 610 export_header = "content/common/content_export.h" |
| 610 } | 611 } |
| 612 |
| 613 mojom("mojo_bindings_with_js") { |
| 614 # This interface is internal to content. |
| 615 visibility = [ "//content/*" ] |
| 616 |
| 617 sources = [ |
| 618 "presentation/presentation.mojom", |
| 619 ] |
| 620 |
| 621 import_dirs = [ "//mojo/services" ] |
| 622 |
| 623 public_deps = [ |
| 624 "//url/mojo:url_mojom_gurl", |
| 625 ] |
| 626 |
| 627 export_class_attribute = "CONTENT_EXPORT" |
| 628 export_define = "CONTENT_IMPLEMENTATION=1" |
| 629 export_header = "content/common/content_export.h" |
| 630 } |
| OLD | NEW |