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

Unified Diff: apps/apps.gypi

Issue 11829055: Create top level apps component and move some apps code there. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moved test, c/b/e not allowed to use apps Created 7 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: apps/apps.gypi
diff --git a/apps/apps.gypi b/apps/apps.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..0cc56a2d0c5d6b4da9335f95f4dd1e9449221e98
--- /dev/null
+++ b/apps/apps.gypi
@@ -0,0 +1,41 @@
+# Copyright (c) 2012 The Chromium Authors. All rights reserved.
Yoyo Zhou 2013/01/14 23:37:02 nit: 2013
benwells 2013/01/15 03:15:46 Done.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'apps',
+ 'type': 'static_library',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
+ # Since browser and browser_extensions actually depend on each other,
+ # we must omit the dependency from browser_extensions to browser.
+ # However, this means browser_extensions and browser should more or less
+ # have the same dependencies. Once browser_extensions is untangled from
+ # browser, then we can clean up these dependencies.
+ 'dependencies': [
+ 'browser_extensions',
+ 'common/extensions/api/api.gyp:api',
+ '../skia/skia.gyp:skia',
+ ],
+ 'include_dirs': [
+ '<(INTERMEDIATE_DIR)',
+ ],
+ 'sources': [
+ # All .cc, .h, .m, and .mm files under browser/extensions except for
Yoyo Zhou 2013/01/14 23:37:02 I don't understand this comment.
benwells 2013/01/15 03:15:46 Comment gone.
+ # tests and mocks.
+ 'app_restore_service.cc',
+ 'app_restore_service.h',
+ 'app_restore_service_factory.cc',
+ 'app_restore_service_factory.h',
+ ],
+ 'conditions': [
+ ['enable_extensions==0', {
+ 'sources/': [
+ ['exclude', '^apps/'],
+ ],
+ }],
+ ],
+ },
+ ],
+}
« apps/DEPS ('K') | « apps/app_restore_service_factory.cc ('k') | chrome/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698