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

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 and address comments. 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
« no previous file with comments | « chrome/utility/chrome_content_utility_client.cc ('k') | components/components.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 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 #deps += [ "//components/constrained_window:unit_tests" ] 318 #deps += [ "//components/constrained_window:unit_tests" ]
319 } 319 }
320 if (is_win) { 320 if (is_win) {
321 deps += [ "//components/browser_watcher:unit_tests" ] 321 deps += [ "//components/browser_watcher:unit_tests" ]
322 } 322 }
323 if (is_ios) { 323 if (is_ios) {
324 deps -= [ "//components/devtools_http_handler:unit_tests" ] 324 deps -= [ "//components/devtools_http_handler:unit_tests" ]
325 } 325 }
326 326
327 if (!is_ios) { 327 if (!is_ios) {
328 deps += [ "//components/scheduler:unit_tests" ] 328 deps += [
329 "//components/image_decoder:unit_tests",
330 "//components/scheduler:unit_tests",
331 ]
329 } 332 }
330 } 333 }
331 334
332 repack("components_tests_pak") { 335 repack("components_tests_pak") {
333 sources = [ 336 sources = [
334 "$root_gen_dir/components/components_resources.pak", 337 "$root_gen_dir/components/components_resources.pak",
335 "$root_gen_dir/components/strings/components_strings_en-US.pak", 338 "$root_gen_dir/components/strings/components_strings_en-US.pak",
336 ] 339 ]
337 340
338 output = "$root_out_dir/components_tests_resources.pak" 341 output = "$root_out_dir/components_tests_resources.pak"
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 414
412 deps = [ 415 deps = [
413 "//base", 416 "//base",
414 "//base/test:test_support_perf", 417 "//base/test:test_support_perf",
415 "//testing/gtest", 418 "//testing/gtest",
416 "//testing/perf", 419 "//testing/perf",
417 "//content/test:test_support", 420 "//content/test:test_support",
418 "//components/visitedlink/browser", 421 "//components/visitedlink/browser",
419 ] 422 ]
420 } 423 }
OLDNEW
« no previous file with comments | « chrome/utility/chrome_content_utility_client.cc ('k') | components/components.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698