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 'target_name': 'app_shim', | 8 'target_name': 'app_shim', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 # Since app_shim and browser depend on each other, we omit the dependency | 10 # Since app_shim and browser depend on each other, we omit the dependency |
11 # on browser here. | 11 # on browser here. |
12 'dependencies': [ | 12 'dependencies': [ |
13 '../chrome/chrome_resources.gyp:chrome_strings', | 13 '../chrome/chrome_resources.gyp:chrome_strings', |
14 '../skia/skia.gyp:skia', | 14 '../skia/skia.gyp:skia', |
15 ], | 15 ], |
16 'include_dirs': [ | 16 'include_dirs': [ |
17 '<(INTERMEDIATE_DIR)', | 17 '<(INTERMEDIATE_DIR)', |
18 '<(grit_out_dir)', | 18 '<(grit_out_dir)', |
19 ], | 19 ], |
20 'sources': [ | 20 'sources': [ |
21 'app_shim_handler_mac.cc', | 21 'app_shim_handler_mac.cc', |
22 'app_shim_handler_mac.h', | 22 'app_shim_handler_mac.h', |
23 'app_shim_host_mac.cc', | 23 'app_shim_host_mac.cc', |
24 'app_shim_host_mac.h', | 24 'app_shim_host_mac.h', |
25 'app_shim_host_manager_mac.h', | 25 'app_shim_host_manager_mac.h', |
26 'app_shim_host_manager_mac.mm', | 26 'app_shim_host_manager_mac.mm', |
27 'app_shim_mac.cc', | |
28 'app_shim_mac.h', | |
29 'chrome_main_app_mode_mac.mm', | 27 'chrome_main_app_mode_mac.mm', |
30 'extension_app_shim_handler_mac.cc', | 28 'extension_app_shim_handler_mac.cc', |
31 'extension_app_shim_handler_mac.h', | 29 'extension_app_shim_handler_mac.h', |
32 ], | 30 ], |
33 }, | 31 }, |
34 ], # targets | 32 ], # targets |
35 } | 33 } |
OLD | NEW |