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

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

Issue 799643004: Combine PDF plugin into the Chromium binary. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 import("//testing/test.gni") 8 import("//testing/test.gni")
9 9
10 # This target exists to reference other test executables to bring these files 10 # This target exists to reference other test executables to bring these files
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 "//win8:test_support_win8", 164 "//win8:test_support_win8",
165 ] 165 ]
166 } 166 }
167 } 167 }
168 168
169 if (enable_plugins) { 169 if (enable_plugins) {
170 sources += [ 170 sources += [
171 "ppapi/ppapi_test.cc", 171 "ppapi/ppapi_test.cc",
172 "ppapi/ppapi_test.h", 172 "ppapi/ppapi_test.h",
173 ] 173 ]
174 deps += [
175 "//pdf",
176 ]
174 } 177 }
175 178
176 if (use_ash) { 179 if (use_ash) {
177 deps += [ "//ash:test_support" ] 180 deps += [ "//ash:test_support" ]
178 } 181 }
179 if (toolkit_views) { 182 if (toolkit_views) {
180 deps += [ "//ui/views:test_support" ] 183 deps += [ "//ui/views:test_support" ]
181 } 184 }
182 185
183 if (enable_background) { 186 if (enable_background) {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 "//chrome:resources", 238 "//chrome:resources",
236 "//chrome:strings", 239 "//chrome:strings",
237 "//chrome:packed_extra_resources", 240 "//chrome:packed_extra_resources",
238 "//chrome:packed_resources", 241 "//chrome:packed_resources",
239 "//content/app/resources", 242 "//content/app/resources",
240 "//crypto:platform", 243 "//crypto:platform",
241 "//google_apis:test_support", 244 "//google_apis:test_support",
242 "//net", 245 "//net",
243 "//net:net_resources", 246 "//net:net_resources",
244 "//net:test_support", 247 "//net:test_support",
245 "//pdf",
246 248
247 #"//ppapi:ppapi_tests", # TODO(GYP) this doesn't exist yet. 249 #"//ppapi:ppapi_tests", # TODO(GYP) this doesn't exist yet.
248 "//skia", 250 "//skia",
249 "//sync", 251 "//sync",
250 "//testing/gmock", 252 "//testing/gmock",
251 "//testing/gtest", 253 "//testing/gtest",
252 "//third_party/hunspell", 254 "//third_party/hunspell",
253 "//third_party/icu", 255 "//third_party/icu",
254 "//third_party/libpng", 256 "//third_party/libpng",
255 "//third_party/npapi", 257 "//third_party/npapi",
(...skipping 917 matching lines...) Expand 10 before | Expand all | Expand 10 after
1173 # TODO(GYP) CDM adapter stuff. 1175 # TODO(GYP) CDM adapter stuff.
1174 #if (enable_pepper_cdms) { 1176 #if (enable_pepper_cdms) {
1175 # deps += [ 1177 # deps += [
1176 # "//media/cdm/ppapi:clearkeycdmadapter", 1178 # "//media/cdm/ppapi:clearkeycdmadapter",
1177 # "//ppapi:ppapi_cpp", 1179 # "//ppapi:ppapi_cpp",
1178 # "//third_party/widevine/cdm:adapter", 1180 # "//third_party/widevine/cdm:adapter",
1179 # ] 1181 # ]
1180 #} 1182 #}
1181 } 1183 }
1182 } 1184 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698