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

Side by Side Diff: components/BUILD.gn

Issue 1028543002: Turn the utility process image decoder into a Mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 5 years, 7 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("//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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 #deps += [ "//components/constrained_window:unit_tests" ] 314 #deps += [ "//components/constrained_window:unit_tests" ]
315 } 315 }
316 if (is_win) { 316 if (is_win) {
317 deps += [ "//components/browser_watcher:unit_tests" ] 317 deps += [ "//components/browser_watcher:unit_tests" ]
318 } 318 }
319 if (is_ios) { 319 if (is_ios) {
320 deps -= [ "//components/devtools_http_handler:unit_tests" ] 320 deps -= [ "//components/devtools_http_handler:unit_tests" ]
321 } 321 }
322 322
323 if (!is_ios) { 323 if (!is_ios) {
324 deps += [ "//components/scheduler:unit_tests" ] 324 deps += [
325 "//components/image_decoder:unit_tests",
326 "//components/scheduler:unit_tests",
327 ]
325 } 328 }
326 } 329 }
327 330
328 repack("components_tests_pak") { 331 repack("components_tests_pak") {
329 sources = [ 332 sources = [
330 "$root_gen_dir/components/components_resources.pak", 333 "$root_gen_dir/components/components_resources.pak",
331 "$root_gen_dir/components/strings/components_strings_en-US.pak", 334 "$root_gen_dir/components/strings/components_strings_en-US.pak",
332 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak", 335 "$root_gen_dir/ui/resources/ui_resources_100_percent.pak",
333 "$root_gen_dir/ui/resources/webui_resources.pak", 336 "$root_gen_dir/ui/resources/webui_resources.pak",
334 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak", 337 "$root_gen_dir/ui/strings/app_locale_settings_en-US.pak",
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 430
428 deps = [ 431 deps = [
429 "//base", 432 "//base",
430 "//base/test:test_support_perf", 433 "//base/test:test_support_perf",
431 "//testing/gtest", 434 "//testing/gtest",
432 "//testing/perf", 435 "//testing/perf",
433 "//content/test:test_support", 436 "//content/test:test_support",
434 "//components/visitedlink/browser", 437 "//components/visitedlink/browser",
435 ] 438 ]
436 } 439 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698