| 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 |
| 162 deps = [ | 167 deps = [ |
| 163 "//base", | 168 "//base", |
| 164 "//base:i18n", | 169 "//base:i18n", |
| 165 "//base/third_party/dynamic_annotations", | 170 "//base/third_party/dynamic_annotations", |
| 166 "//gpu/command_buffer/client", | 171 "//gpu/command_buffer/client", |
| 167 "//gpu/command_buffer/client:gles2_cmd_helper", | 172 "//gpu/command_buffer/client:gles2_cmd_helper", |
| 168 "//gpu/command_buffer/client:gles2_implementation", | 173 "//gpu/command_buffer/client:gles2_implementation", |
| 169 "//gpu/command_buffer/common", | 174 "//gpu/command_buffer/common", |
| 170 "//ipc", | 175 "//ipc", |
| 171 "//media:shared_memory_support", | 176 "//media:shared_memory_support", |
| 172 "//ppapi/c", | |
| 173 "//ppapi/thunk", | |
| 174 "//third_party/icu:icuuc", | 177 "//third_party/icu:icuuc", |
| 175 "//url", | 178 "//url", |
| 176 ] | 179 ] |
| 177 | 180 |
| 178 if (!is_nacl) { | 181 if (!is_nacl) { |
| 179 deps += [ | 182 deps += [ |
| 180 "//skia", | 183 "//skia", |
| 181 "//ui/events:events_base", | 184 "//ui/events:events_base", |
| 182 "//ui/surface", | 185 "//ui/surface", |
| 183 ] | 186 ] |
| (...skipping 17 matching lines...) Expand all Loading... |
| 201 deps = [ | 204 deps = [ |
| 202 "//base/test:test_support", | 205 "//base/test:test_support", |
| 203 "//ipc", | 206 "//ipc", |
| 204 "//ipc:test_support", | 207 "//ipc:test_support", |
| 205 "//ppapi/proxy", | 208 "//ppapi/proxy", |
| 206 "//ppapi/shared_impl", | 209 "//ppapi/shared_impl", |
| 207 "//testing/gmock", | 210 "//testing/gmock", |
| 208 "//testing/gtest", | 211 "//testing/gtest", |
| 209 ] | 212 ] |
| 210 } | 213 } |
| OLD | NEW |