| 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 18 matching lines...) Expand all Loading... |
| 29 '../../ui/native_theme/native_theme.gyp:native_theme', | 29 '../../ui/native_theme/native_theme.gyp:native_theme', |
| 30 '../../ui/views/views.gyp:views', | 30 '../../ui/views/views.gyp:views', |
| 31 '../../url/url.gyp:url_lib', | 31 '../../url/url.gyp:url_lib', |
| 32 ], | 32 ], |
| 33 'include_dirs': [ | 33 'include_dirs': [ |
| 34 '../..', | 34 '../..', |
| 35 ], | 35 ], |
| 36 'sources': [ | 36 'sources': [ |
| 37 'athena_content_client.cc', | 37 'athena_content_client.cc', |
| 38 'athena_content_client.h', | 38 'athena_content_client.h', |
| 39 'athena_frame_view.cc', |
| 40 'athena_frame_view.h', |
| 39 'athena_launcher.cc', | 41 'athena_launcher.cc', |
| 40 'athena_renderer_pdf_helper.cc', | 42 'athena_renderer_pdf_helper.cc', |
| 41 'athena_renderer_pdf_helper.h', | 43 'athena_renderer_pdf_helper.h', |
| 44 'athena_views_delegate.cc', |
| 45 'athena_views_delegate.h', |
| 42 'placeholder.cc', | 46 'placeholder.cc', |
| 43 'placeholder.h', | 47 'placeholder.h', |
| 44 'public/athena_launcher.h', | 48 'public/athena_launcher.h', |
| 45 'url_search_provider.cc', | 49 'url_search_provider.cc', |
| 46 'url_search_provider.h', | 50 'url_search_provider.h', |
| 47 ], | 51 ], |
| 48 }, | 52 }, |
| 49 { | 53 { |
| 50 'target_name': 'athena_main', | 54 'target_name': 'athena_main', |
| 51 'type': 'executable', | 55 'type': 'executable', |
| 52 'dependencies': [ | 56 'dependencies': [ |
| 53 '../../ui/accessibility/accessibility.gyp:ax_gen', | 57 '../../ui/accessibility/accessibility.gyp:ax_gen', |
| 54 '../athena.gyp:athena_app_shell_lib', | 58 '../athena.gyp:athena_app_shell_lib', |
| 55 '../resources/athena_resources.gyp:athena_pak', | 59 '../resources/athena_resources.gyp:athena_pak', |
| 56 'athena_main_lib', | 60 'athena_main_lib', |
| 57 ], | 61 ], |
| 58 'include_dirs': [ | 62 'include_dirs': [ |
| 59 '../..', | 63 '../..', |
| 60 ], | 64 ], |
| 61 'sources': [ | 65 'sources': [ |
| 62 'athena_main.cc', | 66 'athena_main.cc', |
| 63 ], | 67 ], |
| 64 } | 68 } |
| 65 ], # targets | 69 ], # targets |
| 66 } | 70 } |
| OLD | NEW |