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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 | 163 # TODO(GYP) support chrome_multiple_dll |
| 164 #if (chrome_multiple_dll) { | 164 #if (chrome_multiple_dll) { |
| 165 # public_deps = [ "//third_party/WebKit/public:blink_minimal" ] | 165 # public_deps = [ "//third_party/WebKit/public:blink_minimal" ] |
| 166 #} else { | 166 #} else { |
| 167 public_deps = [ | 167 if (!is_nacl) { |
|
brettw
2015/02/25 21:27:30
I think jam's patch just deletes this dependency i
Dirk Pranke
2015/02/25 21:37:41
Yeah, I thought I deleted all these, I guess I mis
| |
| 168 "//third_party/WebKit/public:blink", | 168 public_deps = [ |
| 169 ] | 169 "//third_party/WebKit/public:blink", |
| 170 ] | |
| 171 } | |
| 170 | 172 |
| 171 #} | 173 #} |
| 172 deps = [ | 174 deps = [ |
| 173 "//base", | 175 "//base", |
| 174 "//base:i18n", | 176 "//base:i18n", |
| 175 "//base/third_party/dynamic_annotations", | |
| 176 "//gpu/command_buffer/client", | 177 "//gpu/command_buffer/client", |
| 177 "//gpu/command_buffer/client:gles2_cmd_helper", | 178 "//gpu/command_buffer/client:gles2_cmd_helper", |
| 178 "//gpu/command_buffer/client:gles2_implementation", | 179 "//gpu/command_buffer/client:gles2_implementation", |
| 179 "//gpu/command_buffer/common", | 180 "//gpu/command_buffer/common", |
| 180 "//ipc", | 181 "//ipc", |
| 181 "//media:shared_memory_support", | 182 "//media:shared_memory_support", |
| 182 "//ppapi/c", | 183 "//ppapi/c", |
| 183 "//ppapi/thunk", | 184 "//ppapi/thunk", |
| 184 "//skia", | |
| 185 "//third_party/icu:icuuc", | 185 "//third_party/icu:icuuc", |
| 186 "//ui/events:events_base", | |
| 187 "//ui/surface", | |
| 188 "//url", | 186 "//url", |
| 189 ] | 187 ] |
| 190 | 188 |
| 189 if (!is_nacl) { | |
| 190 deps += [ | |
| 191 "//base/third_party/dynamic_annotations", | |
|
brettw
2015/02/25 21:27:30
Ditto about dynamic annotations.
Dirk Pranke
2015/02/25 21:37:41
Acknowledged.
| |
| 192 "//skia", | |
| 193 "//ui/events:events_base", | |
| 194 "//ui/surface", | |
| 195 ] | |
| 196 } | |
| 197 | |
| 191 if (is_mac) { | 198 if (is_mac) { |
| 192 libs = [ "QuartzCore.framework" ] | 199 libs = [ "QuartzCore.framework" ] |
| 193 } | 200 } |
| 194 } | 201 } |
| 195 | 202 |
| 196 source_set("test_support") { | 203 source_set("test_support") { |
| 197 testonly = true | 204 testonly = true |
| 198 | 205 |
| 199 sources = [ | 206 sources = [ |
| 200 "test_globals.cc", | 207 "test_globals.cc", |
| 201 "test_globals.h", | 208 "test_globals.h", |
| 202 "unittest_utils.cc", | 209 "unittest_utils.cc", |
| 203 "unittest_utils.h", | 210 "unittest_utils.h", |
| 204 ] | 211 ] |
| 205 | 212 |
| 206 deps = [ | 213 deps = [ |
| 207 "//base/test:test_support", | 214 "//base/test:test_support", |
| 208 "//ipc", | 215 "//ipc", |
| 209 "//ipc:test_support", | 216 "//ipc:test_support", |
| 210 "//ppapi/proxy", | 217 "//ppapi/proxy", |
| 211 "//ppapi/shared_impl", | 218 "//ppapi/shared_impl", |
| 212 "//testing/gmock", | 219 "//testing/gmock", |
| 213 "//testing/gtest", | 220 "//testing/gtest", |
| 214 ] | 221 ] |
| 215 } | 222 } |
| OLD | NEW |