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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 # 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.
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 'target_name': 'apps',
9 'type': 'static_library',
10 'variables': { 'enable_wexit_time_destructors': 1, },
11 # Since browser and browser_extensions actually depend on each other,
12 # we must omit the dependency from browser_extensions to browser.
13 # However, this means browser_extensions and browser should more or less
14 # have the same dependencies. Once browser_extensions is untangled from
15 # browser, then we can clean up these dependencies.
16 'dependencies': [
17 'browser_extensions',
18 'common/extensions/api/api.gyp:api',
19 '../skia/skia.gyp:skia',
20 ],
21 'include_dirs': [
22 '<(INTERMEDIATE_DIR)',
23 ],
24 'sources': [
25 # 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.
26 # tests and mocks.
27 'app_restore_service.cc',
28 'app_restore_service.h',
29 'app_restore_service_factory.cc',
30 'app_restore_service_factory.h',
31 ],
32 'conditions': [
33 ['enable_extensions==0', {
34 'sources/': [
35 ['exclude', '^apps/'],
36 ],
37 }],
38 ],
39 },
40 ],
41 }
OLDNEW
« 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