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

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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//build/module_args/v8.gni") 8 import("//build/module_args/v8.gni")
9 import("//testing/test.gni") 9 import("//testing/test.gni")
10 10
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 "//win8:test_support_win8", 168 "//win8:test_support_win8",
169 ] 169 ]
170 } 170 }
171 } 171 }
172 172
173 if (enable_plugins) { 173 if (enable_plugins) {
174 sources += [ 174 sources += [
175 "ppapi/ppapi_test.cc", 175 "ppapi/ppapi_test.cc",
176 "ppapi/ppapi_test.h", 176 "ppapi/ppapi_test.h",
177 ] 177 ]
178 deps += [ "//pdf" ]
178 } 179 }
179 180
180 if (use_ash) { 181 if (use_ash) {
181 deps += [ "//ash:test_support" ] 182 deps += [ "//ash:test_support" ]
182 } 183 }
183 if (toolkit_views) { 184 if (toolkit_views) {
184 deps += [ "//ui/views:test_support" ] 185 deps += [ "//ui/views:test_support" ]
185 } 186 }
186 187
187 if (enable_background) { 188 if (enable_background) {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 "//chrome:resources", 240 "//chrome:resources",
240 "//chrome:strings", 241 "//chrome:strings",
241 "//chrome:packed_extra_resources", 242 "//chrome:packed_extra_resources",
242 "//chrome:packed_resources", 243 "//chrome:packed_resources",
243 "//content/app/resources", 244 "//content/app/resources",
244 "//crypto:platform", 245 "//crypto:platform",
245 "//google_apis:test_support", 246 "//google_apis:test_support",
246 "//net", 247 "//net",
247 "//net:net_resources", 248 "//net:net_resources",
248 "//net:test_support", 249 "//net:test_support",
249 "//pdf",
250 250
251 #"//ppapi:ppapi_tests", # TODO(GYP) this doesn't exist yet. 251 #"//ppapi:ppapi_tests", # TODO(GYP) this doesn't exist yet.
252 "//skia", 252 "//skia",
253 "//sync", 253 "//sync",
254 "//testing/gmock", 254 "//testing/gmock",
255 "//testing/gtest", 255 "//testing/gtest",
256 "//third_party/hunspell", 256 "//third_party/hunspell",
257 "//third_party/icu", 257 "//third_party/icu",
258 "//third_party/libpng", 258 "//third_party/libpng",
259 "//third_party/npapi", 259 "//third_party/npapi",
(...skipping 1411 matching lines...) Expand 10 before | Expand all | Expand 10 after
1671 } 1671 }
1672 if (use_ozone) { 1672 if (use_ozone) {
1673 # crbug.com/354036 1673 # crbug.com/354036
1674 sources -= [ "browser/chromeos/events/event_rewriter_unittest.cc" ] 1674 sources -= [ "browser/chromeos/events/event_rewriter_unittest.cc" ]
1675 } 1675 }
1676 if (!enable_plugin_installation) { 1676 if (!enable_plugin_installation) {
1677 sources -= [ "../browser/plugins/plugin_installer_unittest.cc" ] 1677 sources -= [ "../browser/plugins/plugin_installer_unittest.cc" ]
1678 } 1678 }
1679 } 1679 }
1680 } 1680 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698