| 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/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/config/win/console_app.gni") | 8 import("//build/config/win/console_app.gni") |
| 9 import("//build/config/win/manifest.gni") | 9 import("//build/config/win/manifest.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 } | 620 } |
| 621 } | 621 } |
| 622 | 622 |
| 623 content_shell_framework_name = "$content_shell_product_name Framework" | 623 content_shell_framework_name = "$content_shell_product_name Framework" |
| 624 content_shell_helper_name = "$content_shell_product_name Helper" | 624 content_shell_helper_name = "$content_shell_product_name Helper" |
| 625 | 625 |
| 626 tweak_info_plist("content_shell_framework_plist") { | 626 tweak_info_plist("content_shell_framework_plist") { |
| 627 testonly = true | 627 testonly = true |
| 628 info_plist = "app/framework-Info.plist" | 628 info_plist = "app/framework-Info.plist" |
| 629 args = [ | 629 args = [ |
| 630 "--breakpad=1", | 630 "--breakpad=0", |
| 631 "--keystone=0", | 631 "--keystone=0", |
| 632 "--scm=1", | 632 "--scm=1", |
| 633 "--version", | 633 "--version", |
| 634 content_shell_version, | 634 content_shell_version, |
| 635 "--branding", | 635 "--branding", |
| 636 content_shell_product_name, | 636 content_shell_product_name, |
| 637 ] | 637 ] |
| 638 } | 638 } |
| 639 | 639 |
| 640 mac_framework_bundle("content_shell_framework") { | 640 mac_framework_bundle("content_shell_framework") { |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 743 "{{bundle_resources_dir}}/{{source_file_part}}", | 743 "{{bundle_resources_dir}}/{{source_file_part}}", |
| 744 ] | 744 ] |
| 745 } | 745 } |
| 746 } | 746 } |
| 747 | 747 |
| 748 mojom("mojo_bindings") { | 748 mojom("mojo_bindings") { |
| 749 sources = [ | 749 sources = [ |
| 750 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", | 750 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", |
| 751 ] | 751 ] |
| 752 } | 752 } |
| OLD | NEW |