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 '../../chromeos/chromeos.gyp:power_manager_proto', |
17 '../../skia/skia.gyp:skia', | 18 '../../skia/skia.gyp:skia', |
18 '../../ui/accessibility/accessibility.gyp:ax_gen', | 19 '../../ui/accessibility/accessibility.gyp:ax_gen', |
19 '../../ui/app_list/app_list.gyp:app_list', | 20 '../../ui/app_list/app_list.gyp:app_list', |
20 '../../ui/keyboard/keyboard.gyp:keyboard', | 21 '../../ui/keyboard/keyboard.gyp:keyboard', |
21 '../../ui/views/views.gyp:views', | 22 '../../ui/views/views.gyp:views', |
22 '../../url/url.gyp:url_lib', | 23 '../../url/url.gyp:url_lib', |
23 ], | 24 ], |
24 'include_dirs': [ | 25 'include_dirs': [ |
25 '../..', | 26 '../..', |
26 ], | 27 ], |
27 'sources': [ | 28 'sources': [ |
28 'athena_app_window_controller.cc', | 29 'athena_app_window_controller.cc', |
29 'athena_app_window_controller.h', | 30 'athena_app_window_controller.h', |
30 'athena_launcher.cc', | 31 'athena_launcher.cc', |
31 'athena_launcher.h', | 32 'athena_launcher.h', |
| 33 'debug/debug_window.cc', |
| 34 'debug/debug_window.h', |
32 'url_search_provider.cc', | 35 'url_search_provider.cc', |
33 'url_search_provider.h', | 36 'url_search_provider.h', |
34 'athena_main.cc', | 37 'athena_main.cc', |
35 'placeholder.cc', | 38 'placeholder.cc', |
36 'placeholder.h', | 39 'placeholder.h', |
37 ], | 40 ], |
38 }, | 41 }, |
39 { | 42 { |
40 'target_name': 'athena_shell', | 43 'target_name': 'athena_shell', |
41 'type': 'executable', | 44 'type': 'executable', |
42 'dependencies': [ | 45 'dependencies': [ |
43 '../../base/base.gyp:base', | 46 '../../base/base.gyp:base', |
44 '../../base/base.gyp:base_i18n', | 47 '../../base/base.gyp:base_i18n', |
45 '../../skia/skia.gyp:skia', | 48 '../../skia/skia.gyp:skia', |
46 '../../ui/accessibility/accessibility.gyp:ax_gen', | 49 '../../ui/accessibility/accessibility.gyp:ax_gen', |
47 '../../ui/aura/aura.gyp:aura', | 50 '../../ui/aura/aura.gyp:aura', |
48 '../../ui/compositor/compositor.gyp:compositor_test_support', | 51 '../../ui/compositor/compositor.gyp:compositor_test_support', |
49 '../../ui/gfx/gfx.gyp:gfx', | 52 '../../ui/gfx/gfx.gyp:gfx', |
50 '../../ui/resources/ui_resources.gyp:ui_test_pak', | 53 '../../ui/resources/ui_resources.gyp:ui_test_pak', |
51 '../athena.gyp:athena_lib', | 54 '../athena.gyp:athena_lib', |
52 '../athena.gyp:athena_test_support', | 55 '../athena.gyp:athena_test_support', |
53 ], | 56 ], |
54 'sources': [ | 57 'sources': [ |
55 'athena_shell.cc', | 58 'athena_shell.cc', |
56 ], | 59 ], |
57 } | 60 } |
58 ], # targets | 61 ], # targets |
59 } | 62 } |
OLD | NEW |