OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 Chrome browser process responsible for launching | 8 # This is the part of the Chrome browser process responsible for launching |
9 # and communicating with app_shim processes on Mac. | 9 # and communicating with app_shim processes on Mac. |
| 10 # |
| 11 # GN version: //chrome/browser/apps/app_shim |
10 'target_name': 'browser_app_shim', | 12 'target_name': 'browser_app_shim', |
11 'type': 'static_library', | 13 'type': 'static_library', |
12 'dependencies': [ | 14 'dependencies': [ |
13 # Since browser_app_shim and chrome.gyp:browser depend on each other, | 15 # Since browser_app_shim and chrome.gyp:browser depend on each other, |
14 # we omit the dependency on browser here. | 16 # we omit the dependency on browser here. |
15 '../content/content.gyp:content_browser', | 17 '../content/content.gyp:content_browser', |
16 '../content/content.gyp:content_common', | 18 '../content/content.gyp:content_common', |
17 ], | 19 ], |
18 'sources': [ | 20 'sources': [ |
19 'app_shim_handler_mac.cc', | 21 'app_shim_handler_mac.cc', |
20 'app_shim_handler_mac.h', | 22 'app_shim_handler_mac.h', |
21 'app_shim_host_mac.cc', | 23 'app_shim_host_mac.cc', |
22 'app_shim_host_mac.h', | 24 'app_shim_host_mac.h', |
23 'app_shim_host_manager_mac.h', | 25 'app_shim_host_manager_mac.h', |
24 'app_shim_host_manager_mac.mm', | 26 'app_shim_host_manager_mac.mm', |
25 'extension_app_shim_handler_mac.cc', | 27 'extension_app_shim_handler_mac.cc', |
26 'extension_app_shim_handler_mac.h', | 28 'extension_app_shim_handler_mac.h', |
27 'unix_domain_socket_acceptor.cc', | 29 'unix_domain_socket_acceptor.cc', |
28 'unix_domain_socket_acceptor.h', | 30 'unix_domain_socket_acceptor.h', |
29 ], | 31 ], |
30 }, | 32 }, |
31 ], # targets | 33 ], # targets |
32 } | 34 } |
OLD | NEW |