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

Side by Side Diff: chrome/BUILD.gn

Issue 1641353003: GpuArcVideoService (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@arc-4-owen-ArcGpuVideoDecodeAccelerator
Patch Set: fix build Created 4 years, 8 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 | « no previous file | chrome/app/BUILD.gn » ('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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chrome_build.gni") 6 import("//build/config/chrome_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/locales.gni") 9 import("//build/config/locales.gni")
10 import("//build/config/sanitizers/sanitizers.gni") 10 import("//build/config/sanitizers/sanitizers.gni")
(...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after
488 # GYP version: chromium_child_dependencies variable in chrome.gyp 488 # GYP version: chromium_child_dependencies variable in chrome.gyp
489 group("child_dependencies") { 489 group("child_dependencies") {
490 public_deps = [ 490 public_deps = [
491 "//chrome/common", 491 "//chrome/common",
492 "//sync", 492 "//sync",
493 ] 493 ]
494 if (!is_ios) { 494 if (!is_ios) {
495 public_deps += [ 495 public_deps += [
496 "//chrome/browser/devtools", 496 "//chrome/browser/devtools",
497 "//chrome/child", 497 "//chrome/child",
498 "//chrome/gpu",
498 "//chrome/renderer", 499 "//chrome/renderer",
499 "//chrome/utility", 500 "//chrome/utility",
500 "//content/public/child", 501 "//content/public/child",
501 "//third_party/WebKit/public:blink_devtools_frontend_resources", 502 "//third_party/WebKit/public:blink_devtools_frontend_resources",
502 ] 503 ]
503 } 504 }
504 if (cld_version == 2) { 505 if (cld_version == 2) {
505 public_deps += [ "//third_party/cld_2:cld2_platform_impl" ] 506 public_deps += [ "//third_party/cld_2:cld2_platform_impl" ]
506 } 507 }
507 508
(...skipping 497 matching lines...) Expand 10 before | Expand all | Expand 10 after
1005 libs = [ 1006 libs = [
1006 "android", 1007 "android",
1007 "jnigraphics", 1008 "jnigraphics",
1008 ] 1009 ]
1009 1010
1010 deps = [ 1011 deps = [
1011 "//chrome/browser", 1012 "//chrome/browser",
1012 "//chrome/browser/ui", 1013 "//chrome/browser/ui",
1013 "//chrome/child", 1014 "//chrome/child",
1014 "//chrome/common", 1015 "//chrome/common",
1016 "//chrome/gpu",
1015 "//chrome/renderer", 1017 "//chrome/renderer",
1016 "//chrome/utility", 1018 "//chrome/utility",
1017 "//components/safe_browsing_db:safe_browsing_db_mobile", 1019 "//components/safe_browsing_db:safe_browsing_db_mobile",
1018 "//content/public/app:both", 1020 "//content/public/app:both",
1019 ] 1021 ]
1020 } 1022 }
1021 } 1023 }
1022 1024
1023 if (is_linux) { 1025 if (is_linux) {
1024 action("manpage") { 1026 action("manpage") {
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
1096 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1098 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1097 "//chrome/tools/build/linux/chrome-wrapper", 1099 "//chrome/tools/build/linux/chrome-wrapper",
1098 "//third_party/xdg-utils/scripts/xdg-mime", 1100 "//third_party/xdg-utils/scripts/xdg-mime",
1099 "//third_party/xdg-utils/scripts/xdg-settings", 1101 "//third_party/xdg-utils/scripts/xdg-settings",
1100 ] 1102 ]
1101 outputs = [ 1103 outputs = [
1102 "$root_out_dir/{{source_file_part}}", 1104 "$root_out_dir/{{source_file_part}}",
1103 ] 1105 ]
1104 } 1106 }
1105 } 1107 }
OLDNEW
« no previous file with comments | « no previous file | chrome/app/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698