OLD | NEW |
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/util/process_version.gni") | 6 import("//build/util/process_version.gni") |
7 import("//chrome/common/features.gni") | 7 import("//chrome/common/features.gni") |
8 import("//chrome/process_version_rc_template.gni") # For branding_file_path. | 8 import("//chrome/process_version_rc_template.gni") # For branding_file_path. |
9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 "//crypto", | 206 "//crypto", |
207 "//extensions/common:common_constants", | 207 "//extensions/common:common_constants", |
208 "//gin", | 208 "//gin", |
209 "//google_apis", | 209 "//google_apis", |
210 "//gpu/command_buffer/service", | 210 "//gpu/command_buffer/service", |
211 "//gpu/config", | 211 "//gpu/config", |
212 "//ipc", | 212 "//ipc", |
213 "//media", | 213 "//media", |
214 "//mojo/public/cpp/bindings", | 214 "//mojo/public/cpp/bindings", |
215 "//net", | 215 "//net", |
| 216 "//ppapi/features", |
216 "//skia", | 217 "//skia", |
217 "//third_party/icu", | 218 "//third_party/icu", |
218 "//third_party/kasko:kasko_features", | 219 "//third_party/kasko:kasko_features", |
219 "//third_party/re2", | 220 "//third_party/re2", |
220 "//third_party/widevine/cdm:version_h", | 221 "//third_party/widevine/cdm:headers", |
221 "//third_party/zlib:zip", | 222 "//third_party/zlib:zip", |
222 "//ui/accessibility", | 223 "//ui/accessibility", |
223 "//ui/base", | 224 "//ui/base", |
224 "//ui/gfx/ipc", | 225 "//ui/gfx/ipc", |
225 "//ui/gfx/ipc/geometry", | 226 "//ui/gfx/ipc/geometry", |
226 "//ui/gfx/ipc/skia", | 227 "//ui/gfx/ipc/skia", |
227 "//ui/gl", | 228 "//ui/gl", |
228 "//ui/message_center", | 229 "//ui/message_center", |
229 "//ui/resources:resources", | 230 "//ui/resources:resources", |
230 "//url", | 231 "//url", |
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
571 "//content/public/common:result_codes", | 572 "//content/public/common:result_codes", |
572 ] | 573 ] |
573 deps = [ | 574 deps = [ |
574 ":features", | 575 ":features", |
575 ":version_header", | 576 ":version_header", |
576 "//base", | 577 "//base", |
577 "//base/third_party/dynamic_annotations", | 578 "//base/third_party/dynamic_annotations", |
578 "//components/bookmarks/common", | 579 "//components/bookmarks/common", |
579 "//components/nacl/common:switches", | 580 "//components/nacl/common:switches", |
580 "//media:cdm_paths", # Needed by chrome_paths.cc. | 581 "//media:cdm_paths", # Needed by chrome_paths.cc. |
581 "//third_party/widevine/cdm:version_h", | 582 "//ppapi/features", |
| 583 "//third_party/widevine/cdm:headers", |
582 ] | 584 ] |
583 | 585 |
584 if (is_android) { | 586 if (is_android) { |
585 # This dependency must only be added for Android. | 587 # This dependency must only be added for Android. |
586 # | 588 # |
587 # On Windows, //chrome/installer/util depends on this target to get | 589 # On Windows, //chrome/installer/util depends on this target to get |
588 # constants. That target is in turn used in a number of installer helper | 590 # constants. That target is in turn used in a number of installer helper |
589 # targets independent of Chrome that we want to keep small. So we don't | 591 # targets independent of Chrome that we want to keep small. So we don't |
590 # want something large like //ui/base. | 592 # want something large like //ui/base. |
591 # | 593 # |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
668 "shell_handler_win.mojom", | 670 "shell_handler_win.mojom", |
669 ] | 671 ] |
670 | 672 |
671 public_deps = [ | 673 public_deps = [ |
672 "//skia/public/interfaces", | 674 "//skia/public/interfaces", |
673 "//url/mojo:url_mojom_gurl", | 675 "//url/mojo:url_mojom_gurl", |
674 ] | 676 ] |
675 | 677 |
676 use_new_wrapper_types = false | 678 use_new_wrapper_types = false |
677 } | 679 } |
OLD | NEW |