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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 # This is the part of the shim process compiled into Chrome. It runs only | 8 # This is the part of the shim process compiled into Chrome. It runs only |
9 # in the shim process, after the shim finds and loads the Chrome | 9 # in the shim process, after the shim finds and loads the Chrome |
10 # Framework bundle. | 10 # Framework bundle. |
| 11 # |
| 12 # GN version: //chrome/app_shim |
11 'target_name': 'app_shim', | 13 'target_name': 'app_shim', |
12 'type': 'static_library', | 14 'type': 'static_library', |
13 'dependencies': [ | 15 'dependencies': [ |
14 # Since app_shim and browser depend on each other, we omit the | 16 # Since app_shim and browser depend on each other, we omit the |
15 # dependency on browser here. | 17 # dependency on browser here. |
16 '../chrome/chrome_resources.gyp:chrome_strings', | 18 '../chrome/chrome_resources.gyp:chrome_strings', |
17 'app_mode_app_support', | 19 'app_mode_app_support', |
18 ], | 20 ], |
19 'sources': [ | 21 'sources': [ |
20 'chrome_main_app_mode_mac.mm', | 22 'chrome_main_app_mode_mac.mm', |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 'postbuild_name': 'Tweak Info.plist', | 75 'postbuild_name': 'Tweak Info.plist', |
74 'action': ['<(tweak_info_plist_path)', | 76 'action': ['<(tweak_info_plist_path)', |
75 '--breakpad=0', | 77 '--breakpad=0', |
76 '--keystone=0', | 78 '--keystone=0', |
77 '--scm=0'], | 79 '--scm=0'], |
78 }, | 80 }, |
79 ], | 81 ], |
80 }, # target app_mode_app | 82 }, # target app_mode_app |
81 ], # targets | 83 ], # targets |
82 } | 84 } |
OLD | NEW |