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("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 10 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
10 if (is_mac) { | 11 if (is_mac) { |
11 import("//build/config/mac/mac_sdk.gni") | 12 import("//build/config/mac/mac_sdk.gni") |
12 } | 13 } |
13 | 14 |
14 source_set("common") { | 15 source_set("common") { |
15 # Targets external to content should always link to the public API. | 16 # Targets external to content should always link to the public API. |
16 # In addition, targets outside of the content component (shell and tests) | 17 # In addition, targets outside of the content component (shell and tests) |
17 # must not link to this because it will duplicate the code in the component | 18 # must not link to this because it will duplicate the code in the component |
18 # build. | 19 # build. |
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 "//media/base/ipc", | 379 "//media/base/ipc", |
379 "//media/capture", | 380 "//media/capture", |
380 "//media/capture/ipc", | 381 "//media/capture/ipc", |
381 "//media/gpu/ipc/client", | 382 "//media/gpu/ipc/client", |
382 "//media/gpu/ipc/common", | 383 "//media/gpu/ipc/common", |
383 "//media/midi", | 384 "//media/midi", |
384 "//media/midi:mojo_cpp_sources", | 385 "//media/midi:mojo_cpp_sources", |
385 "//mojo/common:common_base", | 386 "//mojo/common:common_base", |
386 "//mojo/edk/system", | 387 "//mojo/edk/system", |
387 "//net", | 388 "//net", |
| 389 "//ppapi/features", |
388 "//sandbox", | 390 "//sandbox", |
389 "//services/service_manager", | 391 "//services/service_manager", |
390 "//services/service_manager/public/cpp", | 392 "//services/service_manager/public/cpp", |
391 "//services/service_manager/public/interfaces", | 393 "//services/service_manager/public/interfaces", |
392 "//services/service_manager/runner/common", | 394 "//services/service_manager/runner/common", |
393 "//services/ui/public/interfaces", | 395 "//services/ui/public/interfaces", |
394 "//services/video_capture/public/interfaces", | 396 "//services/video_capture/public/interfaces", |
395 "//skia", | 397 "//skia", |
396 "//storage/common", | 398 "//storage/common", |
397 "//third_party/WebKit/public:blink_minimal", | 399 "//third_party/WebKit/public:blink_minimal", |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
604 "//ui/gfx/geometry/mojo", | 606 "//ui/gfx/geometry/mojo", |
605 "//ui/gfx/mojo", | 607 "//ui/gfx/mojo", |
606 "//url/mojo:url_mojom_gurl", | 608 "//url/mojo:url_mojom_gurl", |
607 "//url/mojo:url_mojom_origin", | 609 "//url/mojo:url_mojom_origin", |
608 ] | 610 ] |
609 | 611 |
610 export_class_attribute = "CONTENT_EXPORT" | 612 export_class_attribute = "CONTENT_EXPORT" |
611 export_define = "CONTENT_IMPLEMENTATION=1" | 613 export_define = "CONTENT_IMPLEMENTATION=1" |
612 export_header = "content/common/content_export.h" | 614 export_header = "content/common/content_export.h" |
613 } | 615 } |
OLD | NEW |