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 |
| 23 # header-only dependency, without bringing in all of content. |
| 24 source_set("result_codes") { |
| 25 sources = [ |
| 26 "result_codes.h", |
| 27 ] |
| 28 } |
| 29 |
22 source_set("common_sources") { | 30 source_set("common_sources") { |
23 visibility = [ "//content/*" ] | 31 visibility = [ "//content/*" ] |
24 | 32 |
25 sources = rebase_path(content_common_gypi_values.public_common_sources, | 33 sources = rebase_path(content_common_gypi_values.public_common_sources, |
26 ".", | 34 ".", |
27 "//content") | 35 "//content") |
28 | 36 |
29 configs += [ "//content:content_implementation" ] | 37 configs += [ "//content:content_implementation" ] |
30 | 38 |
31 public_deps = [ | 39 public_deps = [ |
(...skipping 17 matching lines...) Expand all Loading... |
49 } | 57 } |
50 } | 58 } |
51 | 59 |
52 mojom("mojo_bindings") { | 60 mojom("mojo_bindings") { |
53 sources = [ | 61 sources = [ |
54 "background_sync.mojom", | 62 "background_sync.mojom", |
55 "mojo_geoposition.mojom", | 63 "mojo_geoposition.mojom", |
56 "permission_status.mojom", | 64 "permission_status.mojom", |
57 ] | 65 ] |
58 } | 66 } |
OLD | NEW |