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 { |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
44 'athena_views_delegate.cc', | 44 'athena_views_delegate.cc', |
45 'athena_views_delegate.h', | 45 'athena_views_delegate.h', |
46 'placeholder.cc', | 46 'placeholder.cc', |
47 'placeholder.h', | 47 'placeholder.h', |
48 'public/athena_launcher.h', | 48 'public/athena_launcher.h', |
49 'url_search_provider.cc', | 49 'url_search_provider.cc', |
50 'url_search_provider.h', | 50 'url_search_provider.h', |
51 ], | 51 ], |
52 }, | 52 }, |
53 { | 53 { |
54 'target_name': 'athena_main_stub_lib', | |
55 'type': 'static_library', | |
56 'defines': [ | |
57 'ATHENA_IMPLEMENTATION', | |
58 ], | |
59 'include_dirs': [ | |
60 '../..', | |
61 ], | |
62 'sources': [ | |
63 'lock_manager_stub.cc', | |
Jun Mukai
2014/10/13 18:20:24
Usually this kind of file should be in athena/scre
oshima
2014/10/13 18:52:20
+1
Dmitry Polukhin
2014/10/14 11:20:33
Done.
| |
64 ], | |
65 }, | |
66 { | |
54 'target_name': 'athena_main', | 67 'target_name': 'athena_main', |
55 'type': 'executable', | 68 'type': 'executable', |
56 'dependencies': [ | 69 'dependencies': [ |
57 '../../ui/accessibility/accessibility.gyp:ax_gen', | 70 '../../ui/accessibility/accessibility.gyp:ax_gen', |
58 '../athena.gyp:athena_app_shell_lib', | 71 '../athena.gyp:athena_app_shell_lib', |
59 '../resources/athena_resources.gyp:athena_pak', | 72 '../resources/athena_resources.gyp:athena_pak', |
60 'athena_main_lib', | 73 'athena_main_lib', |
74 'athena_main_stub_lib', | |
61 ], | 75 ], |
62 'include_dirs': [ | 76 'include_dirs': [ |
63 '../..', | 77 '../..', |
64 ], | 78 ], |
65 'sources': [ | 79 'sources': [ |
66 'athena_main.cc', | 80 'athena_main.cc', |
67 ], | 81 ], |
68 } | 82 } |
69 ], # targets | 83 ], # targets |
70 } | 84 } |
OLD | NEW |