Chromium Code Reviews| 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 #} | 163 #} |
|
brettw
2015/02/25 16:40:38
Delete this line too
jam
2015/02/25 16:55:24
Done.
| |
| 172 deps = [ | 164 deps = [ |
| 173 "//base", | 165 "//base", |
| 174 "//base:i18n", | 166 "//base:i18n", |
| 175 "//base/third_party/dynamic_annotations", | 167 "//base/third_party/dynamic_annotations", |
| 176 "//gpu/command_buffer/client", | 168 "//gpu/command_buffer/client", |
| 177 "//gpu/command_buffer/client:gles2_cmd_helper", | 169 "//gpu/command_buffer/client:gles2_cmd_helper", |
| 178 "//gpu/command_buffer/client:gles2_implementation", | 170 "//gpu/command_buffer/client:gles2_implementation", |
| 179 "//gpu/command_buffer/common", | 171 "//gpu/command_buffer/common", |
| 180 "//ipc", | 172 "//ipc", |
| 181 "//media:shared_memory_support", | 173 "//media:shared_memory_support", |
| (...skipping 24 matching lines...) Expand all Loading... | |
| 206 deps = [ | 198 deps = [ |
| 207 "//base/test:test_support", | 199 "//base/test:test_support", |
| 208 "//ipc", | 200 "//ipc", |
| 209 "//ipc:test_support", | 201 "//ipc:test_support", |
| 210 "//ppapi/proxy", | 202 "//ppapi/proxy", |
| 211 "//ppapi/shared_impl", | 203 "//ppapi/shared_impl", |
| 212 "//testing/gmock", | 204 "//testing/gmock", |
| 213 "//testing/gtest", | 205 "//testing/gtest", |
| 214 ] | 206 ] |
| 215 } | 207 } |
| OLD | NEW |