| 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 440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 451 public_deps += [ | 451 public_deps += [ |
| 452 "//third_party/google_toolbox_for_mac", | 452 "//third_party/google_toolbox_for_mac", |
| 453 "//third_party/mach_override", | 453 "//third_party/mach_override", |
| 454 ] | 454 ] |
| 455 } | 455 } |
| 456 | 456 |
| 457 if (enable_plugins) { | 457 if (enable_plugins) { |
| 458 sources += [ | 458 sources += [ |
| 459 "pepper_flash.cc", | 459 "pepper_flash.cc", |
| 460 "pepper_flash.h", | 460 "pepper_flash.h", |
| 461 "plugin_utils.cc", |
| 462 "plugin_utils.h", |
| 461 "ppapi_utils.cc", | 463 "ppapi_utils.cc", |
| 462 "ppapi_utils.h", | 464 "ppapi_utils.h", |
| 463 ] | 465 ] |
| 464 public_deps += [ "//third_party/adobe/flash:flapper_version_h" ] | 466 public_deps += [ "//third_party/adobe/flash:flapper_version_h" ] |
| 465 } | 467 } |
| 466 if (enable_plugins && enable_extensions) { | 468 if (enable_plugins && enable_extensions) { |
| 467 sources += [ | 469 sources += [ |
| 468 "pepper_permission_util.cc", | 470 "pepper_permission_util.cc", |
| 469 "pepper_permission_util.h", | 471 "pepper_permission_util.h", |
| 470 ] | 472 ] |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 654 "shell_handler_win.mojom", | 656 "shell_handler_win.mojom", |
| 655 ] | 657 ] |
| 656 | 658 |
| 657 public_deps = [ | 659 public_deps = [ |
| 658 "//skia/public/interfaces", | 660 "//skia/public/interfaces", |
| 659 "//url/mojo:url_mojom_gurl", | 661 "//url/mojo:url_mojom_gurl", |
| 660 ] | 662 ] |
| 661 | 663 |
| 662 use_new_wrapper_types = false | 664 use_new_wrapper_types = false |
| 663 } | 665 } |
| OLD | NEW |