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

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

Issue 2321313002: Move components/memory_coordinator -> content/ (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 533 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 ":common", 544 ":common",
545 ] 545 ]
546 } 546 }
547 } 547 }
548 548
549 mojom("mojo_bindings") { 549 mojom("mojo_bindings") {
550 # This interface is internal to content. 550 # This interface is internal to content.
551 visibility = [ "//content/*" ] 551 visibility = [ "//content/*" ]
552 552
553 sources = [ 553 sources = [
554 "child_memory_coordinator.mojom",
554 "frame.mojom", 555 "frame.mojom",
555 "image_downloader/image_downloader.mojom", 556 "image_downloader/image_downloader.mojom",
556 "leveldb_wrapper.mojom", 557 "leveldb_wrapper.mojom",
558 "memory_coordinator.mojom",
557 "render_frame_message_filter.mojom", 559 "render_frame_message_filter.mojom",
558 "render_widget_window_tree_client_factory.mojom", 560 "render_widget_window_tree_client_factory.mojom",
559 "service_worker/embedded_worker_setup.mojom", 561 "service_worker/embedded_worker_setup.mojom",
560 "storage_partition_service.mojom", 562 "storage_partition_service.mojom",
561 "url_loader.mojom", 563 "url_loader.mojom",
562 "url_loader_factory.mojom", 564 "url_loader_factory.mojom",
563 ] 565 ]
564 566
565 import_dirs = [ "//mojo/services" ] 567 import_dirs = [ "//mojo/services" ]
566 568
567 public_deps = [ 569 public_deps = [
568 "//components/leveldb/public/interfaces", 570 "//components/leveldb/public/interfaces",
569 "//device/sensors/public/interfaces", 571 "//device/sensors/public/interfaces",
570 "//services/shell/public/interfaces", 572 "//services/shell/public/interfaces",
571 "//services/ui/public/interfaces", 573 "//services/ui/public/interfaces",
572 "//skia/public/interfaces", 574 "//skia/public/interfaces",
573 "//third_party/WebKit/public:mojo_bindings", 575 "//third_party/WebKit/public:mojo_bindings",
574 "//ui/gfx/geometry/mojo", 576 "//ui/gfx/geometry/mojo",
575 "//url/mojo:url_mojom_gurl", 577 "//url/mojo:url_mojom_gurl",
576 "//url/mojo:url_mojom_origin", 578 "//url/mojo:url_mojom_origin",
577 ] 579 ]
578 580
579 export_class_attribute = "CONTENT_EXPORT" 581 export_class_attribute = "CONTENT_EXPORT"
580 export_define = "CONTENT_IMPLEMENTATION=1" 582 export_define = "CONTENT_IMPLEMENTATION=1"
581 export_header = "content/common/content_export.h" 583 export_header = "content/common/content_export.h"
582 } 584 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698