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

Side by Side Diff: athena/main/athena_main.gyp

Issue 335003003: Introduces AppActivity and handler of chrome.shell API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: AppWindowOwner Created 6 years, 6 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
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
11 'target_name': 'athena_main', 11 'target_name': 'athena_main',
12 'type': 'executable', 12 'type': 'executable',
13 'dependencies': [ 13 'dependencies': [
14 '../athena.gyp:athena_lib', 14 '../athena.gyp:athena_lib',
15 '../athena.gyp:athena_content_lib', 15 '../athena.gyp:athena_content_lib',
16 '../../apps/shell/app_shell.gyp:app_shell_lib', 16 '../../apps/shell/app_shell.gyp:app_shell_lib',
17 '../../skia/skia.gyp:skia', 17 '../../skia/skia.gyp:skia',
18 '../../ui/accessibility/accessibility.gyp:ax_gen', 18 '../../ui/accessibility/accessibility.gyp:ax_gen',
19 '../../ui/views/views.gyp:views', 19 '../../ui/views/views.gyp:views',
20 '../../url/url.gyp:url_lib', 20 '../../url/url.gyp:url_lib',
21 ], 21 ],
22 'include_dirs': [ 22 'include_dirs': [
23 '../..', 23 '../..',
24 ], 24 ],
25 'sources': [ 25 'sources': [
26 'athena_launcher.cc', 26 'athena_launcher.cc',
27 'athena_launcher.h', 27 'athena_launcher.h',
28 'athena_app_window_controller.cc',
29 'athena_app_window_controller.h',
28 'athena_main.cc', 30 'athena_main.cc',
29 'placeholder.cc', 31 'placeholder.cc',
30 'placeholder.h', 32 'placeholder.h',
31 ], 33 ],
32 }, 34 },
33 { 35 {
34 'target_name': 'athena_shell', 36 'target_name': 'athena_shell',
35 'type': 'executable', 37 'type': 'executable',
36 'dependencies': [ 38 'dependencies': [
37 '../../base/base.gyp:base', 39 '../../base/base.gyp:base',
38 '../../base/base.gyp:base_i18n', 40 '../../base/base.gyp:base_i18n',
39 '../../skia/skia.gyp:skia', 41 '../../skia/skia.gyp:skia',
40 '../../ui/accessibility/accessibility.gyp:ax_gen', 42 '../../ui/accessibility/accessibility.gyp:ax_gen',
41 '../../ui/aura/aura.gyp:aura', 43 '../../ui/aura/aura.gyp:aura',
42 '../../ui/compositor/compositor.gyp:compositor_test_support', 44 '../../ui/compositor/compositor.gyp:compositor_test_support',
43 '../../ui/gfx/gfx.gyp:gfx', 45 '../../ui/gfx/gfx.gyp:gfx',
44 '../athena.gyp:athena_lib', 46 '../athena.gyp:athena_lib',
45 '../athena.gyp:athena_test_support', 47 '../athena.gyp:athena_test_support',
46 ], 48 ],
47 'sources': [ 49 'sources': [
48 'athena_shell.cc', 50 'athena_shell.cc',
49 ], 51 ],
50 } 52 }
51 ], # targets 53 ], # targets
52 } 54 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698