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("//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", |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 | 68 |
69 configs += [ | 69 configs += [ |
70 "//build/config:precompiled_headers", | 70 "//build/config:precompiled_headers", |
71 "//content:content_implementation", | 71 "//content:content_implementation", |
72 ] | 72 ] |
73 | 73 |
74 public_configs = [ "//v8:external_startup_data" ] | 74 public_configs = [ "//v8:external_startup_data" ] |
75 | 75 |
76 public_deps = [ | 76 public_deps = [ |
77 "//content/common", | 77 "//content/common", |
78 "//third_party/mojo/src/mojo/public/cpp/bindings", | 78 "//mojo/public/cpp/bindings", |
79 ] | 79 ] |
80 deps = [ | 80 deps = [ |
81 "//net", | 81 "//net", |
82 "//skia", | 82 "//skia", |
83 "//third_party/WebKit/public:blink_headers", | 83 "//third_party/WebKit/public:blink_headers", |
84 "//third_party/icu", | 84 "//third_party/icu", |
85 "//ui/base", | 85 "//ui/base", |
86 "//ui/gfx", | 86 "//ui/gfx", |
87 ] | 87 ] |
88 | 88 |
(...skipping 13 matching lines...) Expand all Loading... |
102 } | 102 } |
103 | 103 |
104 mojom("mojo_bindings") { | 104 mojom("mojo_bindings") { |
105 sources = [ | 105 sources = [ |
106 "background_sync.mojom", | 106 "background_sync.mojom", |
107 "mojo_geoposition.mojom", | 107 "mojo_geoposition.mojom", |
108 "permission_status.mojom", | 108 "permission_status.mojom", |
109 "service_worker_event_status.mojom", | 109 "service_worker_event_status.mojom", |
110 ] | 110 ] |
111 } | 111 } |
OLD | NEW |