| 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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 "//gpu/command_buffer/service", | 372 "//gpu/command_buffer/service", |
| 373 "//gpu/ipc/client", | 373 "//gpu/ipc/client", |
| 374 "//gpu/ipc/common", | 374 "//gpu/ipc/common", |
| 375 "//gpu/skia_bindings", | 375 "//gpu/skia_bindings", |
| 376 "//ipc", | 376 "//ipc", |
| 377 "//ipc:mojom", | 377 "//ipc:mojom", |
| 378 "//media", | 378 "//media", |
| 379 "//media:shared_memory_support", | 379 "//media:shared_memory_support", |
| 380 "//media/base/ipc", | 380 "//media/base/ipc", |
| 381 "//media/capture", | 381 "//media/capture", |
| 382 "//media/capture/ipc", |
| 382 "//media/gpu/ipc/client", | 383 "//media/gpu/ipc/client", |
| 383 "//media/gpu/ipc/common", | 384 "//media/gpu/ipc/common", |
| 384 "//media/midi", | 385 "//media/midi", |
| 385 "//media/midi:mojo_cpp_sources", | 386 "//media/midi:mojo_cpp_sources", |
| 386 "//mojo/common:common_base", | 387 "//mojo/common:common_base", |
| 387 "//mojo/edk/system", | 388 "//mojo/edk/system", |
| 388 "//net", | 389 "//net", |
| 389 "//sandbox", | 390 "//sandbox", |
| 390 "//services/service_manager", | 391 "//services/service_manager", |
| 391 "//services/service_manager/public/cpp", | 392 "//services/service_manager/public/cpp", |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 583 import_dirs = [ "//mojo/services" ] | 584 import_dirs = [ "//mojo/services" ] |
| 584 | 585 |
| 585 public_deps = [ | 586 public_deps = [ |
| 586 "//components/leveldb/public/interfaces", | 587 "//components/leveldb/public/interfaces", |
| 587 "//content/public/common:interfaces", | 588 "//content/public/common:interfaces", |
| 588 "//device/sensors/public/interfaces", | 589 "//device/sensors/public/interfaces", |
| 589 | 590 |
| 590 # TODO(mcasas): remove the following dep after https://crbug.com/653994 | 591 # TODO(mcasas): remove the following dep after https://crbug.com/653994 |
| 591 "//gpu/ipc/common:interfaces", | 592 "//gpu/ipc/common:interfaces", |
| 592 "//ipc:mojom", | 593 "//ipc:mojom", |
| 594 "//media/capture/mojo:capture_types", |
| 593 "//media/mojo/interfaces", | 595 "//media/mojo/interfaces", |
| 594 "//mojo/common:common_custom_types", | 596 "//mojo/common:common_custom_types", |
| 595 "//services/service_manager/public/interfaces", | 597 "//services/service_manager/public/interfaces", |
| 596 "//services/ui/public/interfaces", | 598 "//services/ui/public/interfaces", |
| 597 "//services/video_capture/public/interfaces", | 599 "//services/video_capture/public/interfaces", |
| 598 "//skia/public/interfaces", | 600 "//skia/public/interfaces", |
| 599 "//third_party/WebKit/public:mojo_bindings", | 601 "//third_party/WebKit/public:mojo_bindings", |
| 600 "//third_party/WebKit/public:new_wrapper_types_mojo_bindings", | 602 "//third_party/WebKit/public:new_wrapper_types_mojo_bindings", |
| 601 "//ui/base/mojo:mojo_bindings", | 603 "//ui/base/mojo:mojo_bindings", |
| 602 "//ui/gfx/geometry/mojo", | 604 "//ui/gfx/geometry/mojo", |
| 603 "//ui/gfx/mojo", | 605 "//ui/gfx/mojo", |
| 604 "//url/mojo:url_mojom_gurl", | 606 "//url/mojo:url_mojom_gurl", |
| 605 "//url/mojo:url_mojom_origin", | 607 "//url/mojo:url_mojom_origin", |
| 606 ] | 608 ] |
| 607 | 609 |
| 608 export_class_attribute = "CONTENT_EXPORT" | 610 export_class_attribute = "CONTENT_EXPORT" |
| 609 export_define = "CONTENT_IMPLEMENTATION=1" | 611 export_define = "CONTENT_IMPLEMENTATION=1" |
| 610 export_header = "content/common/content_export.h" | 612 export_header = "content/common/content_export.h" |
| 611 } | 613 } |
| OLD | NEW |