OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 component("shared_impl") { | 5 component("shared_impl") { |
6 output_name = "ppapi_shared" | 6 output_name = "ppapi_shared" |
7 | 7 |
8 sources = [ | 8 sources = [ |
9 "array_var.cc", | 9 "array_var.cc", |
10 "array_var.h", | 10 "array_var.h", |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 } | 152 } |
153 | 153 |
154 configs += [ "//build/config:precompiled_headers" ] | 154 configs += [ "//build/config:precompiled_headers" ] |
155 defines = [ | 155 defines = [ |
156 "PPAPI_SHARED_IMPLEMENTATION", | 156 "PPAPI_SHARED_IMPLEMENTATION", |
157 | 157 |
158 # This target goes in the same library as thunk (in GYP they are the same). | 158 # This target goes in the same library as thunk (in GYP they are the same). |
159 "PPAPI_THUNK_IMPLEMENTATION", | 159 "PPAPI_THUNK_IMPLEMENTATION", |
160 ] | 160 ] |
161 | 161 |
162 public_deps = [ | |
163 "//ppapi/c", | |
164 "//ppapi/thunk", | |
165 ] | |
166 | |
167 deps = [ | 162 deps = [ |
168 "//base", | 163 "//base", |
169 "//base:i18n", | 164 "//base:i18n", |
170 "//base/third_party/dynamic_annotations", | 165 "//base/third_party/dynamic_annotations", |
171 "//gpu/command_buffer/client", | 166 "//gpu/command_buffer/client", |
172 "//gpu/command_buffer/client:gles2_cmd_helper", | 167 "//gpu/command_buffer/client:gles2_cmd_helper", |
173 "//gpu/command_buffer/client:gles2_implementation", | 168 "//gpu/command_buffer/client:gles2_implementation", |
174 "//gpu/command_buffer/common", | 169 "//gpu/command_buffer/common", |
175 "//ipc", | 170 "//ipc", |
176 "//media:shared_memory_support", | 171 "//media:shared_memory_support", |
| 172 "//ppapi/c", |
| 173 "//ppapi/thunk", |
177 "//third_party/icu:icuuc", | 174 "//third_party/icu:icuuc", |
178 "//url", | 175 "//url", |
179 ] | 176 ] |
180 | 177 |
181 if (!is_nacl) { | 178 if (!is_nacl) { |
182 deps += [ | 179 deps += [ |
183 "//skia", | 180 "//skia", |
184 "//ui/events:events_base", | 181 "//ui/events:events_base", |
185 "//ui/surface", | 182 "//ui/surface", |
186 ] | 183 ] |
(...skipping 17 matching lines...) Expand all Loading... |
204 deps = [ | 201 deps = [ |
205 "//base/test:test_support", | 202 "//base/test:test_support", |
206 "//ipc", | 203 "//ipc", |
207 "//ipc:test_support", | 204 "//ipc:test_support", |
208 "//ppapi/proxy", | 205 "//ppapi/proxy", |
209 "//ppapi/shared_impl", | 206 "//ppapi/shared_impl", |
210 "//testing/gmock", | 207 "//testing/gmock", |
211 "//testing/gtest", | 208 "//testing/gtest", |
212 ] | 209 ] |
213 } | 210 } |
OLD | NEW |