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

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

Issue 2622993002: [Presentation API] Move presentation.mojom to content/common/presentation (Closed)
Patch Set: Fix presentation_service_delegate. DEPS failure Created 3 years, 11 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("//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
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
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 }
OLDNEW
« no previous file with comments | « content/browser/presentation/presentation_type_converters_unittest.cc ('k') | content/common/presentation/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698