Home | History | Annotate | Download | only in app_shim
      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
      3 # found in the LICENSE file.
      4 
      5 {
      6   'targets': [
      7     {
      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',
     11       'type': 'static_library',
     12       'dependencies': [
     13         # Since browser_app_shim and browser depend on each other, we omit the
     14         # dependency on browser here.
     15         '../content/content.gyp:content_common',
     16       ],
     17       'sources': [
     18         'app_shim_handler_mac.cc',
     19         'app_shim_handler_mac.h',
     20         'app_shim_host_mac.cc',
     21         'app_shim_host_mac.h',
     22         'app_shim_host_manager_mac.h',
     23         'app_shim_host_manager_mac.mm',
     24         'extension_app_shim_handler_mac.cc',
     25         'extension_app_shim_handler_mac.h',
     26         'unix_domain_socket_acceptor.cc',
     27         'unix_domain_socket_acceptor.h',
     28       ],
     29     },
     30   ],  # targets
     31 }
     32