| 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 import("//build/config/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
| 6 | 6 |
| 7 component("shared_impl") { | 7 component("shared_impl") { |
| 8 output_name = "ppapi_shared" | 8 output_name = "ppapi_shared" |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 "//gpu/command_buffer/client", | 172 "//gpu/command_buffer/client", |
| 173 "//gpu/command_buffer/client:gles2_cmd_helper", | 173 "//gpu/command_buffer/client:gles2_cmd_helper", |
| 174 "//gpu/command_buffer/client:gles2_implementation", | 174 "//gpu/command_buffer/client:gles2_implementation", |
| 175 "//gpu/command_buffer/common", | 175 "//gpu/command_buffer/common", |
| 176 "//ipc", | 176 "//ipc", |
| 177 "//media:shared_memory_support", | 177 "//media:shared_memory_support", |
| 178 ] | 178 ] |
| 179 | 179 |
| 180 if (!is_nacl) { | 180 if (!is_nacl) { |
| 181 deps += [ | 181 deps += [ |
| 182 "//net", |
| 182 "//skia", | 183 "//skia", |
| 183 "//ui/events:events_base", | 184 "//ui/events:events_base", |
| 184 "//ui/surface", | 185 "//ui/surface", |
| 185 ] | 186 ] |
| 186 } | 187 } |
| 187 | 188 |
| 188 if (!is_nacl_nonsfi) { | 189 if (!is_nacl_nonsfi) { |
| 189 deps += [ | 190 deps += [ |
| 190 "//base:i18n", | 191 "//base:i18n", |
| 191 "//base/third_party/dynamic_annotations", | 192 "//base/third_party/dynamic_annotations", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 214 ] | 215 ] |
| 215 deps = [ | 216 deps = [ |
| 216 "//base/test:test_support", | 217 "//base/test:test_support", |
| 217 "//ipc", | 218 "//ipc", |
| 218 "//ipc:test_support", | 219 "//ipc:test_support", |
| 219 "//ppapi/proxy", | 220 "//ppapi/proxy", |
| 220 "//testing/gmock", | 221 "//testing/gmock", |
| 221 "//testing/gtest", | 222 "//testing/gtest", |
| 222 ] | 223 ] |
| 223 } | 224 } |
| OLD | NEW |