OLD | NEW |
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 ], | 21 ], |
21 'include_dirs': [ | 22 'include_dirs': [ |
22 '../..', | 23 '../..', |
23 ], | 24 ], |
24 'sources': [ | 25 'sources': [ |
25 'athena_launcher.cc', | 26 'athena_launcher.cc', |
26 'athena_launcher.h', | 27 'athena_launcher.h', |
27 'athena_main.cc', | 28 'athena_main.cc', |
28 'placeholder.cc', | 29 'placeholder.cc', |
29 'placeholder.h', | 30 'placeholder.h', |
30 'placeholder_content.cc', | |
31 'placeholder_content.h', | |
32 ], | 31 ], |
33 }, | 32 }, |
34 { | 33 { |
35 'target_name': 'athena_shell', | 34 'target_name': 'athena_shell', |
36 'type': 'executable', | 35 'type': 'executable', |
37 'dependencies': [ | 36 'dependencies': [ |
38 '../../base/base.gyp:base', | 37 '../../base/base.gyp:base', |
39 '../../base/base.gyp:base_i18n', | 38 '../../base/base.gyp:base_i18n', |
40 '../../skia/skia.gyp:skia', | 39 '../../skia/skia.gyp:skia', |
41 '../../ui/accessibility/accessibility.gyp:ax_gen', | 40 '../../ui/accessibility/accessibility.gyp:ax_gen', |
42 '../../ui/aura/aura.gyp:aura', | 41 '../../ui/aura/aura.gyp:aura', |
43 '../../ui/compositor/compositor.gyp:compositor_test_support', | 42 '../../ui/compositor/compositor.gyp:compositor_test_support', |
44 '../../ui/gfx/gfx.gyp:gfx', | 43 '../../ui/gfx/gfx.gyp:gfx', |
45 '../athena.gyp:athena_lib', | 44 '../athena.gyp:athena_lib', |
46 '../athena.gyp:athena_test_support', | 45 '../athena.gyp:athena_test_support', |
47 ], | 46 ], |
48 'sources': [ | 47 'sources': [ |
49 'athena_shell.cc', | 48 'athena_shell.cc', |
50 ], | 49 ], |
51 } | 50 } |
52 ], # targets | 51 ], # targets |
53 } | 52 } |
OLD | NEW |