Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(302)

Side by Side Diff: chrome/test/BUILD.gn

Issue 854503004: Fix some files in chrome directory for Windows GN build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build on Linux and ChromeOS. Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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",
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698