OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 | 7 |
8 # This target exists to reference other test executables to bring these files | 8 # This target exists to reference other test executables to bring these files |
9 # into the build. | 9 # into the build. |
10 group("test") { | 10 group("test") { |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
154 if (is_linux) { | 154 if (is_linux) { |
155 deps += [ "//crypto:platform" ] | 155 deps += [ "//crypto:platform" ] |
156 } | 156 } |
157 if (is_win) { | 157 if (is_win) { |
158 deps += [ | 158 deps += [ |
159 "//third_party/wtl", | 159 "//third_party/wtl", |
160 "//ui/snapshot:test_support", | 160 "//ui/snapshot:test_support", |
161 ] | 161 ] |
162 if (use_aura) { | 162 if (use_aura) { |
163 deps += [ | 163 deps += [ |
164 #'../win8/win8.gyp:test_registrar_constants', TODO(GYP) | 164 "//win8:test_registrar_constants", |
165 #'../win8/win8.gyp:test_support_win8', TODO(GYP) | 165 "//win8:test_support_win8", |
166 ] | 166 ] |
167 } | 167 } |
168 } | 168 } |
169 | 169 |
170 if (enable_plugins) { | 170 if (enable_plugins) { |
171 sources += [ | 171 sources += [ |
172 "ppapi/ppapi_test.cc", | 172 "ppapi/ppapi_test.cc", |
173 "ppapi/ppapi_test.h", | 173 "ppapi/ppapi_test.h", |
174 ] | 174 ] |
175 } | 175 } |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
407 # TODO(GYP) CDM adapter stuff. | 407 # TODO(GYP) CDM adapter stuff. |
408 #if (enable_pepper_cdms) { | 408 #if (enable_pepper_cdms) { |
409 # deps += [ | 409 # deps += [ |
410 # "//media/cdm/ppapi:clearkeycdmadapter", | 410 # "//media/cdm/ppapi:clearkeycdmadapter", |
411 # "//ppapi:ppapi_cpp", | 411 # "//ppapi:ppapi_cpp", |
412 # "//third_party/widevine/cdm:adapter", | 412 # "//third_party/widevine/cdm:adapter", |
413 # ] | 413 # ] |
414 #} | 414 #} |
415 } | 415 } |
416 } | 416 } |
OLD | NEW |