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

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

Issue 2475543003: Introduce the image_decoder service (Closed)
Patch Set: . Created 4 years, 1 month 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/app/BUILD.gn ('k') | chrome/browser/DEPS » ('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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//build/split_static_library.gni") 9 import("//build/split_static_library.gni")
10 import("//chrome/common/features.gni") 10 import("//chrome/common/features.gni")
(...skipping 1425 matching lines...) Expand 10 before | Expand all | Expand 10 after
1436 "//gpu/config", 1436 "//gpu/config",
1437 "//media", 1437 "//media",
1438 "//media/midi", 1438 "//media/midi",
1439 "//mojo/common", 1439 "//mojo/common",
1440 "//mojo/edk/system", 1440 "//mojo/edk/system",
1441 "//mojo/public/cpp/bindings", 1441 "//mojo/public/cpp/bindings",
1442 "//mojo/public/js", 1442 "//mojo/public/js",
1443 "//net:extras", 1443 "//net:extras",
1444 "//net:net_with_v8", 1444 "//net:net_with_v8",
1445 "//printing/features", 1445 "//printing/features",
1446 "//services/image_decoder/public/cpp",
1446 "//services/service_manager/public/cpp", 1447 "//services/service_manager/public/cpp",
1447 "//skia", 1448 "//skia",
1448 "//sql", 1449 "//sql",
1449 "//storage/browser", 1450 "//storage/browser",
1450 "//storage/common", 1451 "//storage/common",
1451 "//third_party/WebKit/public:features", 1452 "//third_party/WebKit/public:features",
1452 "//third_party/WebKit/public:image_resources", 1453 "//third_party/WebKit/public:image_resources",
1453 "//third_party/WebKit/public:resources", 1454 "//third_party/WebKit/public:resources",
1454 "//third_party/cacheinvalidation", 1455 "//third_party/cacheinvalidation",
1455 "//third_party/icu", 1456 "//third_party/icu",
(...skipping 2603 matching lines...) Expand 10 before | Expand all | Expand 10 after
4059 rebase_path(additional_modules_list_file, root_build_dir), 4060 rebase_path(additional_modules_list_file, root_build_dir),
4060 "-E", 4061 "-E",
4061 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir), 4062 "root_gen_dir=" + rebase_path(root_gen_dir, root_build_dir),
4062 ] 4063 ]
4063 4064
4064 deps = [ 4065 deps = [
4065 ":chrome_internal_resources_gen", 4066 ":chrome_internal_resources_gen",
4066 4067
4067 # Depend only on the generated mojo bindings since we read the .mojom.js 4068 # Depend only on the generated mojo bindings since we read the .mojom.js
4068 # file, rather than the whole mojo target which will link the C++ bindings. 4069 # file, rather than the whole mojo target which will link the C++ bindings.
4070 "//chrome/app:chrome_content_browser_manifest_overlay",
4069 "//chrome/browser/ui/webui/engagement:mojo_bindings__generator", 4071 "//chrome/browser/ui/webui/engagement:mojo_bindings__generator",
4070 "//chrome/browser/ui/webui/omnibox:mojo_bindings__generator", 4072 "//chrome/browser/ui/webui/omnibox:mojo_bindings__generator",
4071 "//chrome/browser/ui/webui/plugins:mojo_bindings__generator", 4073 "//chrome/browser/ui/webui/plugins:mojo_bindings__generator",
4072 "//chrome/browser/ui/webui/usb_internals:mojo_bindings__generator", 4074 "//chrome/browser/ui/webui/usb_internals:mojo_bindings__generator",
4073 "//device/bluetooth/public/interfaces:experimental_interfaces__generator", 4075 "//device/bluetooth/public/interfaces:experimental_interfaces__generator",
4074 "//url/mojo:url_mojom_gurl__generator", 4076 "//url/mojo:url_mojom_gurl__generator",
4075 "//url/mojo:url_mojom_origin__generator", 4077 "//url/mojo:url_mojom_origin__generator",
4076 ] 4078 ]
4077 4079
4078 if (safe_browsing_mode > 0) { 4080 if (safe_browsing_mode > 0) {
(...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after
4398 # linking all of the test support. 4400 # linking all of the test support.
4399 static_library("pepper_cdm_test_constants") { 4401 static_library("pepper_cdm_test_constants") {
4400 testonly = true 4402 testonly = true
4401 visibility = [ "//chrome/*" ] 4403 visibility = [ "//chrome/*" ]
4402 sources = [ 4404 sources = [
4403 "media/pepper_cdm_test_constants.cc", 4405 "media/pepper_cdm_test_constants.cc",
4404 "media/pepper_cdm_test_constants.h", 4406 "media/pepper_cdm_test_constants.h",
4405 ] 4407 ]
4406 } 4408 }
4407 } 4409 }
OLDNEW
« no previous file with comments | « chrome/app/BUILD.gn ('k') | chrome/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698