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("//content/common/common.gni") | 6 import("//content/common/common.gni") |
7 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 7 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
8 | 8 |
9 # See //content/BUILD.gn for how this works. | 9 # See //content/BUILD.gn for how this works. |
10 group("common") { | 10 group("common") { |
11 if (is_component_build) { | 11 if (is_component_build) { |
12 public_deps = [ | 12 public_deps = [ |
13 "//content", | 13 "//content", |
14 ] | 14 ] |
15 } else { | 15 } else { |
16 public_deps = [ | 16 public_deps = [ |
17 ":common_sources", | 17 ":common_sources", |
18 ] | 18 ] |
19 } | 19 } |
20 } | 20 } |
21 | 21 |
22 # This target allows other targets to depend on result_codes.h which is a | 22 # This target allows other targets to depend on result_codes.h which is a |
23 # header-only dependency, without bringing in all of content. | 23 # header-only dependency, without bringing in all of content. |
24 source_set("result_codes") { | 24 source_set("result_codes") { |
25 sources = [ | 25 sources = [ |
26 "result_codes.h", | 26 "result_codes.h", |
27 ] | 27 ] |
28 } | 28 } |
29 | 29 |
| 30 # This target allows other targets to depend on content_descriptors.h which is |
| 31 # a header-only dependency, without bringing in all of content. |
| 32 source_set("content_descriptors") { |
| 33 sources = [ |
| 34 "content_descriptors.h", |
| 35 ] |
| 36 public_configs = [ "//v8:external_startup_data" ] |
| 37 } |
| 38 |
30 # Forces static linking for targets using the static_switches constants, even | 39 # Forces static linking for targets using the static_switches constants, even |
31 # in the component build. This config makes it impossible to use the static | 40 # in the component build. This config makes it impossible to use the static |
32 # switches target and use the rest of content at the same time, because the | 41 # switches target and use the rest of content at the same time, because the |
33 # component export flags won't be consistent. | 42 # component export flags won't be consistent. |
34 config("static_switches_defines") { | 43 config("static_switches_defines") { |
35 defines = [ "COMPILE_CONTENT_STATICALLY" ] | 44 defines = [ "COMPILE_CONTENT_STATICALLY" ] |
36 } | 45 } |
37 | 46 |
38 # This target allows you to use the content_switches constants and statically | 47 # This target allows you to use the content_switches constants and statically |
39 # link to it, without depending on the rest of content. This is only for use | 48 # link to it, without depending on the rest of content. This is only for use |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 } | 95 } |
87 | 96 |
88 mojom("mojo_bindings") { | 97 mojom("mojo_bindings") { |
89 sources = [ | 98 sources = [ |
90 "background_sync.mojom", | 99 "background_sync.mojom", |
91 "mojo_geoposition.mojom", | 100 "mojo_geoposition.mojom", |
92 "permission_status.mojom", | 101 "permission_status.mojom", |
93 "service_worker_event_status.mojom", | 102 "service_worker_event_status.mojom", |
94 ] | 103 ] |
95 } | 104 } |
OLD | NEW |