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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 ] | 153 ] |
154 } | 154 } |
155 | 155 |
156 defines = [ | 156 defines = [ |
157 "PPAPI_SHARED_IMPLEMENTATION", | 157 "PPAPI_SHARED_IMPLEMENTATION", |
158 | 158 |
159 # This target also implements some thunk functions. | 159 # This target also implements some thunk functions. |
160 "PPAPI_THUNK_IMPLEMENTATION", | 160 "PPAPI_THUNK_IMPLEMENTATION", |
161 ] | 161 ] |
162 | 162 |
163 # TODO(GYP) support chrome_multiple_dll | |
164 #if (chrome_multiple_dll) { | |
165 # public_deps = [ "//third_party/WebKit/public:blink_minimal" ] | |
166 #} else { | |
167 public_deps = [ | |
168 "//third_party/WebKit/public:blink", | |
169 ] | |
170 | |
171 #} | |
172 deps = [ | 163 deps = [ |
173 "//base", | 164 "//base", |
174 "//base:i18n", | 165 "//base:i18n", |
175 "//base/third_party/dynamic_annotations", | 166 "//base/third_party/dynamic_annotations", |
176 "//gpu/command_buffer/client", | 167 "//gpu/command_buffer/client", |
177 "//gpu/command_buffer/client:gles2_cmd_helper", | 168 "//gpu/command_buffer/client:gles2_cmd_helper", |
178 "//gpu/command_buffer/client:gles2_implementation", | 169 "//gpu/command_buffer/client:gles2_implementation", |
179 "//gpu/command_buffer/common", | 170 "//gpu/command_buffer/common", |
180 "//ipc", | 171 "//ipc", |
181 "//media:shared_memory_support", | 172 "//media:shared_memory_support", |
(...skipping 24 matching lines...) Expand all Loading... |
206 deps = [ | 197 deps = [ |
207 "//base/test:test_support", | 198 "//base/test:test_support", |
208 "//ipc", | 199 "//ipc", |
209 "//ipc:test_support", | 200 "//ipc:test_support", |
210 "//ppapi/proxy", | 201 "//ppapi/proxy", |
211 "//ppapi/shared_impl", | 202 "//ppapi/shared_impl", |
212 "//testing/gmock", | 203 "//testing/gmock", |
213 "//testing/gtest", | 204 "//testing/gtest", |
214 ] | 205 ] |
215 } | 206 } |
OLD | NEW |