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

Side by Side Diff: components/BUILD.gn

Issue 1203083002: Add a JSON sanitizer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: build files Created 5 years, 5 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
« no previous file with comments | « chrome/test/base/chrome_test_suite.cc ('k') | components/components_tests.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//tools/grit/repack.gni") 8 import("//tools/grit/repack.gni")
9 9
10 # Collection of all components. You wouldn't link to this, but this is rather 10 # Collection of all components. You wouldn't link to this, but this is rather
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
340 #deps += [ "//components/constrained_window:unit_tests" ] 340 #deps += [ "//components/constrained_window:unit_tests" ]
341 } 341 }
342 if (is_win) { 342 if (is_win) {
343 deps += [ "//components/browser_watcher:unit_tests" ] 343 deps += [ "//components/browser_watcher:unit_tests" ]
344 } 344 }
345 if (is_ios) { 345 if (is_ios) {
346 deps -= [ "//components/devtools_http_handler:unit_tests" ] 346 deps -= [ "//components/devtools_http_handler:unit_tests" ]
347 } 347 }
348 348
349 if (!is_ios) { 349 if (!is_ios) {
350 deps += [ "//components/scheduler:unit_tests" ] 350 deps += [
351 "//components/safe_json:unit_tests",
352 "//components/scheduler:unit_tests",
353 ]
351 } 354 }
352 } 355 }
353 356
354 repack("components_tests_pak") { 357 repack("components_tests_pak") {
355 sources = [ 358 sources = [
356 "$root_gen_dir/components/components_resources.pak", 359 "$root_gen_dir/components/components_resources.pak",
357 "$root_gen_dir/components/strings/components_strings_en-US.pak", 360 "$root_gen_dir/components/strings/components_strings_en-US.pak",
358 ] 361 ]
359 362
360 output = "$root_out_dir/components_tests_resources.pak" 363 output = "$root_out_dir/components_tests_resources.pak"
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
429 432
430 deps = [ 433 deps = [
431 "//base", 434 "//base",
432 "//base/test:test_support_perf", 435 "//base/test:test_support_perf",
433 "//testing/gtest", 436 "//testing/gtest",
434 "//testing/perf", 437 "//testing/perf",
435 "//content/test:test_support", 438 "//content/test:test_support",
436 "//components/visitedlink/browser", 439 "//components/visitedlink/browser",
437 ] 440 ]
438 } 441 }
OLDNEW
« no previous file with comments | « chrome/test/base/chrome_test_suite.cc ('k') | components/components_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698