| 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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 "//base:i18n", | 165 "//base:i18n", |
| 166 "//base/third_party/dynamic_annotations", | 166 "//base/third_party/dynamic_annotations", |
| 167 "//gpu/command_buffer/client", | 167 "//gpu/command_buffer/client", |
| 168 "//gpu/command_buffer/client:gles2_cmd_helper", | 168 "//gpu/command_buffer/client:gles2_cmd_helper", |
| 169 "//gpu/command_buffer/client:gles2_implementation", | 169 "//gpu/command_buffer/client:gles2_implementation", |
| 170 "//gpu/command_buffer/common", | 170 "//gpu/command_buffer/common", |
| 171 "//ipc", | 171 "//ipc", |
| 172 "//media:shared_memory_support", | 172 "//media:shared_memory_support", |
| 173 "//ppapi/c", | 173 "//ppapi/c", |
| 174 "//ppapi/thunk", | 174 "//ppapi/thunk", |
| 175 "//skia", | |
| 176 "//third_party/icu:icuuc", | 175 "//third_party/icu:icuuc", |
| 177 "//ui/events:events_base", | |
| 178 "//ui/surface", | |
| 179 "//url", | 176 "//url", |
| 180 ] | 177 ] |
| 181 | 178 |
| 179 if (!is_nacl) { |
| 180 deps += [ |
| 181 "//skia", |
| 182 "//ui/events:events_base", |
| 183 "//ui/surface", |
| 184 ] |
| 185 } |
| 186 |
| 182 if (is_mac) { | 187 if (is_mac) { |
| 183 libs = [ "QuartzCore.framework" ] | 188 libs = [ "QuartzCore.framework" ] |
| 184 } | 189 } |
| 185 } | 190 } |
| 186 | 191 |
| 187 source_set("test_support") { | 192 source_set("test_support") { |
| 188 testonly = true | 193 testonly = true |
| 189 | 194 |
| 190 sources = [ | 195 sources = [ |
| 191 "test_globals.cc", | 196 "test_globals.cc", |
| 192 "test_globals.h", | 197 "test_globals.h", |
| 193 "unittest_utils.cc", | 198 "unittest_utils.cc", |
| 194 "unittest_utils.h", | 199 "unittest_utils.h", |
| 195 ] | 200 ] |
| 196 | 201 |
| 197 deps = [ | 202 deps = [ |
| 198 "//base/test:test_support", | 203 "//base/test:test_support", |
| 199 "//ipc", | 204 "//ipc", |
| 200 "//ipc:test_support", | 205 "//ipc:test_support", |
| 201 "//ppapi/proxy", | 206 "//ppapi/proxy", |
| 202 "//ppapi/shared_impl", | 207 "//ppapi/shared_impl", |
| 203 "//testing/gmock", | 208 "//testing/gmock", |
| 204 "//testing/gtest", | 209 "//testing/gtest", |
| 205 ] | 210 ] |
| 206 } | 211 } |
| OLD | NEW |