diff options
author | jackhou@chromium.org <jackhou@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-08 05:21:14 +0000 |
---|---|---|
committer | jackhou@chromium.org <jackhou@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-08 05:21:14 +0000 |
commit | cd2ac0671b0a2b2fef02987ba73febf561d52eef (patch) | |
tree | dd936296bfc5d49a2394d70b63105aa8b15a8359 /apps/app_shim | |
parent | 4bf7ca2fd00ac20b5c9b0c7fe08840057bf99487 (diff) | |
download | chromium_src-cd2ac0671b0a2b2fef02987ba73febf561d52eef.zip chromium_src-cd2ac0671b0a2b2fef02987ba73febf561d52eef.tar.gz chromium_src-cd2ac0671b0a2b2fef02987ba73febf561d52eef.tar.bz2 |
Make a new component 'app_shim'.
This moves app_shim code into its own gypi.
BUG=266705
Review URL: https://codereview.chromium.org/47603020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233769 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'apps/app_shim')
-rw-r--r-- | apps/app_shim/app_shim.gypi | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/apps/app_shim/app_shim.gypi b/apps/app_shim/app_shim.gypi new file mode 100644 index 0000000..59b9f21 --- /dev/null +++ b/apps/app_shim/app_shim.gypi @@ -0,0 +1,34 @@ +# Copyright 2013 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + +{ + 'targets': [ + { + 'target_name': 'app_shim', + 'type': 'static_library', + # Since app_shim and browser depend on each other, we omit the dependency + # on browser here. + 'dependencies': [ + '../skia/skia.gyp:skia', + ], + 'include_dirs': [ + '<(INTERMEDIATE_DIR)', + '<(grit_out_dir)', + ], + 'sources': [ + 'app_shim_handler_mac.cc', + 'app_shim_handler_mac.h', + 'app_shim_host_mac.cc', + 'app_shim_host_mac.h', + 'app_shim_host_manager_mac.h', + 'app_shim_host_manager_mac.mm', + 'app_shim_mac.cc', + 'app_shim_mac.h', + 'chrome_main_app_mode_mac.mm', + 'extension_app_shim_handler_mac.cc', + 'extension_app_shim_handler_mac.h', + ], + }, + ], # targets +} |