Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(317)

Side by Side Diff: chrome/browser/apps/app_shim/browser_app_shim.gypi

Issue 585123004: Mac: Give app_shim code a nicer home (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: various cleanups Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 # This is the part of the Chrome browser process responsible for launching
9 # and communicating with app_shim processes on Mac.
10 'target_name': 'browser_app_shim',
9 'type': 'static_library', 11 'type': 'static_library',
10 # Since app_shim and browser depend on each other, we omit the dependency
11 # on browser here.
12 'dependencies': [ 12 'dependencies': [
13 '../chrome/chrome_resources.gyp:chrome_strings', 13 # Since browser_app_shim and browser depend on each other, we omit the
14 # dependency on browser here.
14 '../content/content.gyp:content_common', 15 '../content/content.gyp:content_common',
15 '../skia/skia.gyp:skia',
16 ],
17 'include_dirs': [
18 '<(INTERMEDIATE_DIR)',
19 '<(grit_out_dir)',
20 ], 16 ],
21 'sources': [ 17 'sources': [
22 'app_shim_handler_mac.cc', 18 'app_shim_handler_mac.cc',
23 'app_shim_handler_mac.h', 19 'app_shim_handler_mac.h',
24 'app_shim_host_mac.cc', 20 'app_shim_host_mac.cc',
25 'app_shim_host_mac.h', 21 'app_shim_host_mac.h',
26 'app_shim_host_manager_mac.h', 22 'app_shim_host_manager_mac.h',
27 'app_shim_host_manager_mac.mm', 23 'app_shim_host_manager_mac.mm',
28 'chrome_main_app_mode_mac.mm',
29 'extension_app_shim_handler_mac.cc', 24 'extension_app_shim_handler_mac.cc',
30 'extension_app_shim_handler_mac.h', 25 'extension_app_shim_handler_mac.h',
31 'unix_domain_socket_acceptor.cc', 26 'unix_domain_socket_acceptor.cc',
32 'unix_domain_socket_acceptor.h', 27 'unix_domain_socket_acceptor.h',
33 ], 28 ],
34 }, 29 },
35 ], # targets 30 ], # targets
36 } 31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698