Chromium Code Reviews| 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 import("//build/module_args/v8.gni") | 7 import("//build/module_args/v8.gni") |
| 8 | 8 |
| 9 # This target exists to reference other test executables to bring these files | 9 # This target exists to reference other test executables to bring these files |
| 10 # into the build. | 10 # into the build. |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 151 "//extensions:test_support", | 151 "//extensions:test_support", |
| 152 ] | 152 ] |
| 153 } | 153 } |
| 154 | 154 |
| 155 if (is_linux) { | 155 if (is_linux) { |
| 156 deps += [ "//crypto:platform" ] | 156 deps += [ "//crypto:platform" ] |
| 157 } | 157 } |
| 158 if (is_win) { | 158 if (is_win) { |
| 159 deps += [ | 159 deps += [ |
| 160 "//third_party/wtl", | 160 "//third_party/wtl", |
| 161 "//ui/snapshot:test_support", | |
|
Slava Chigrin
2015/01/18 20:58:27
Target was removed in https://codereview.chromium.
| |
| 162 ] | 161 ] |
| 163 if (use_aura) { | 162 if (use_aura) { |
| 164 deps += [ | 163 deps += [ |
| 165 "//win8:test_registrar_constants", | 164 "//win8:test_registrar_constants", |
| 166 "//win8:test_support_win8", | 165 "//win8:test_support_win8", |
| 167 ] | 166 ] |
| 168 } | 167 } |
| 169 } | 168 } |
| 170 | 169 |
| 171 if (enable_plugins) { | 170 if (enable_plugins) { |
| (...skipping 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1175 # TODO(GYP) CDM adapter stuff. | 1174 # TODO(GYP) CDM adapter stuff. |
| 1176 #if (enable_pepper_cdms) { | 1175 #if (enable_pepper_cdms) { |
| 1177 # deps += [ | 1176 # deps += [ |
| 1178 # "//media/cdm/ppapi:clearkeycdmadapter", | 1177 # "//media/cdm/ppapi:clearkeycdmadapter", |
| 1179 # "//ppapi:ppapi_cpp", | 1178 # "//ppapi:ppapi_cpp", |
| 1180 # "//third_party/widevine/cdm:adapter", | 1179 # "//third_party/widevine/cdm:adapter", |
| 1181 # ] | 1180 # ] |
| 1182 #} | 1181 #} |
| 1183 } | 1182 } |
| 1184 } | 1183 } |
| OLD | NEW |