| 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 "//gin", | 215 "//gin", |
| 216 "//google_apis", | 216 "//google_apis", |
| 217 "//gpu/command_buffer/service", | 217 "//gpu/command_buffer/service", |
| 218 "//gpu/config", | 218 "//gpu/config", |
| 219 "//ipc", | 219 "//ipc", |
| 220 "//media", | 220 "//media", |
| 221 "//mojo/edk/system", | 221 "//mojo/edk/system", |
| 222 "//mojo/public/cpp/bindings", | 222 "//mojo/public/cpp/bindings", |
| 223 "//net", | 223 "//net", |
| 224 "//ppapi/features", | 224 "//ppapi/features", |
| 225 "//printing/features", |
| 225 "//skia", | 226 "//skia", |
| 226 "//third_party/icu", | 227 "//third_party/icu", |
| 227 "//third_party/kasko:kasko_features", | 228 "//third_party/kasko:kasko_features", |
| 228 "//third_party/re2", | 229 "//third_party/re2", |
| 229 "//third_party/widevine/cdm:headers", | 230 "//third_party/widevine/cdm:headers", |
| 230 "//third_party/zlib:zip", | 231 "//third_party/zlib:zip", |
| 231 "//ui/accessibility", | 232 "//ui/accessibility", |
| 232 "//ui/base", | 233 "//ui/base", |
| 233 "//ui/gfx/ipc", | 234 "//ui/gfx/ipc", |
| 234 "//ui/gfx/ipc/geometry", | 235 "//ui/gfx/ipc/geometry", |
| (...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 563 "env_vars.h", | 564 "env_vars.h", |
| 564 "pref_font_script_names-inl.h", | 565 "pref_font_script_names-inl.h", |
| 565 "pref_font_webkit_names.h", | 566 "pref_font_webkit_names.h", |
| 566 "pref_names.cc", | 567 "pref_names.cc", |
| 567 "pref_names.h", | 568 "pref_names.h", |
| 568 ] | 569 ] |
| 569 | 570 |
| 570 public_deps = [ | 571 public_deps = [ |
| 571 ":features", | 572 ":features", |
| 572 "//content/public/common:result_codes", | 573 "//content/public/common:result_codes", |
| 574 "//printing/features", |
| 573 ] | 575 ] |
| 574 deps = [ | 576 deps = [ |
| 575 ":version_header", | 577 ":version_header", |
| 576 "//base", | 578 "//base", |
| 577 "//base/third_party/dynamic_annotations", | 579 "//base/third_party/dynamic_annotations", |
| 578 "//components/bookmarks/common", | 580 "//components/bookmarks/common", |
| 579 "//components/nacl/common:switches", | 581 "//components/nacl/common:switches", |
| 580 "//media:cdm_paths", # Needed by chrome_paths.cc. | 582 "//media:cdm_paths", # Needed by chrome_paths.cc. |
| 581 "//ppapi/features", | 583 "//ppapi/features", |
| 582 "//third_party/widevine/cdm:headers", | 584 "//third_party/widevine/cdm:headers", |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 669 "shell_handler_win.mojom", | 671 "shell_handler_win.mojom", |
| 670 ] | 672 ] |
| 671 | 673 |
| 672 public_deps = [ | 674 public_deps = [ |
| 673 "//skia/public/interfaces", | 675 "//skia/public/interfaces", |
| 674 "//url/mojo:url_mojom_gurl", | 676 "//url/mojo:url_mojom_gurl", |
| 675 ] | 677 ] |
| 676 | 678 |
| 677 use_new_wrapper_types = false | 679 use_new_wrapper_types = false |
| 678 } | 680 } |
| OLD | NEW |