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") |
11 import("//mojo/public/tools/bindings/mojom.gni") | 11 import("//mojo/public/tools/bindings/mojom.gni") |
12 import("//tools/grit/repack.gni") | 12 import("//tools/grit/repack.gni") |
13 import("//tools/grit/grit_rule.gni") | 13 import("//tools/grit/grit_rule.gni") |
14 if (is_android) { | 14 if (is_android) { |
15 import("//build/config/android/config.gni") | 15 import("//build/config/android/config.gni") |
| 16 } else if (is_mac) { |
| 17 import("//build/config/mac/rules.gni") |
16 } | 18 } |
17 | 19 |
18 declare_args() { | 20 declare_args() { |
19 content_shell_product_name = "Content Shell" | 21 content_shell_product_name = "Content Shell" |
20 content_shell_version = "99.77.34.5" | 22 content_shell_version = "99.77.34.5" |
21 } | 23 } |
22 | 24 |
23 config("content_shell_lib_warnings") { | 25 config("content_shell_lib_warnings") { |
24 if (is_clang) { | 26 if (is_clang) { |
25 # TODO(thakis): Remove this once http://crbug.com/383820 is figured out | 27 # TODO(thakis): Remove this once http://crbug.com/383820 is figured out |
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
513 | 515 |
514 sources = [ | 516 sources = [ |
515 "app/shell_content_main.cc", | 517 "app/shell_content_main.cc", |
516 "app/shell_content_main.h", | 518 "app/shell_content_main.h", |
517 ] | 519 ] |
518 | 520 |
519 deps = [ | 521 deps = [ |
520 ":content_shell_lib", | 522 ":content_shell_lib", |
521 ] | 523 ] |
522 } | 524 } |
| 525 |
| 526 mac_app_bundle("content_shell_helper_app") { |
| 527 testonly = true |
| 528 output_name = "$content_shell_product_name Helper" |
| 529 sources = [ |
| 530 "app/shell_main.cc", |
| 531 ] |
| 532 deps = [ |
| 533 ":framework", |
| 534 ] |
| 535 info_plist = "app/helper-Info.plist" |
| 536 } |
523 } | 537 } |
524 | 538 |
525 mojom("mojo_bindings") { | 539 mojom("mojo_bindings") { |
526 sources = [ | 540 sources = [ |
527 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", | 541 "common/layout_test/layout_test_bluetooth_fake_adapter_setter.mojom", |
528 ] | 542 ] |
529 } | 543 } |
OLD | NEW |