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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
90 'include_dirs': [ | 90 'include_dirs': [ |
91 '../..', | 91 '../..', |
92 '<(SHARED_INTERMEDIATE_DIR)', | 92 '<(SHARED_INTERMEDIATE_DIR)', |
93 '<(SHARED_INTERMEDIATE_DIR)/apps/shell', | 93 '<(SHARED_INTERMEDIATE_DIR)/apps/shell', |
94 ], | 94 ], |
95 'sources': [ | 95 'sources': [ |
96 'app/shell_main_delegate.cc', | 96 'app/shell_main_delegate.cc', |
97 'app/shell_main_delegate.h', | 97 'app/shell_main_delegate.h', |
98 'browser/api/shell/shell_api.cc', | 98 'browser/api/shell/shell_api.cc', |
99 'browser/api/shell/shell_api.h', | 99 'browser/api/shell/shell_api.h', |
100 'browser/default_shell_browser_main_delegate.cc', | |
101 'browser/default_shell_browser_main_delegate.h', | |
102 'browser/shell_app_window.cc', | |
James Cook
2014/05/09 15:56:00
remove this line
oshima
2014/05/09 17:54:24
Done.
| |
100 'browser/shell_app_sorting.cc', | 103 'browser/shell_app_sorting.cc', |
101 'browser/shell_app_sorting.h', | 104 'browser/shell_app_sorting.h', |
102 'browser/shell_app_window.cc', | 105 'browser/shell_app_window.cc', |
103 'browser/shell_app_window.h', | 106 'browser/shell_app_window.h', |
104 'browser/shell_browser_context.cc', | 107 'browser/shell_browser_context.cc', |
105 'browser/shell_browser_context.h', | 108 'browser/shell_browser_context.h', |
109 'browser/shell_browser_main_delegate.h', | |
106 'browser/shell_browser_main_parts.cc', | 110 'browser/shell_browser_main_parts.cc', |
107 'browser/shell_browser_main_parts.h', | 111 'browser/shell_browser_main_parts.h', |
108 'browser/shell_content_browser_client.cc', | 112 'browser/shell_content_browser_client.cc', |
109 'browser/shell_content_browser_client.h', | 113 'browser/shell_content_browser_client.h', |
110 'browser/shell_desktop_controller.cc', | 114 'browser/shell_desktop_controller.cc', |
111 'browser/shell_desktop_controller.h', | 115 'browser/shell_desktop_controller.h', |
112 'browser/shell_extension_system.cc', | 116 'browser/shell_extension_system.cc', |
113 'browser/shell_extension_system.h', | 117 'browser/shell_extension_system.h', |
114 'browser/shell_extension_system_factory.cc', | 118 'browser/shell_extension_system_factory.cc', |
115 'browser/shell_extension_system_factory.h', | 119 'browser/shell_extension_system_factory.h', |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
196 'browser/shell_browsertest.cc', | 200 'browser/shell_browsertest.cc', |
197 'test/shell_test.h', | 201 'test/shell_test.h', |
198 'test/shell_test.cc', | 202 'test/shell_test.cc', |
199 'test/shell_test_launcher_delegate.cc', | 203 'test/shell_test_launcher_delegate.cc', |
200 'test/shell_test_launcher_delegate.h', | 204 'test/shell_test_launcher_delegate.h', |
201 'test/shell_tests_main.cc', | 205 'test/shell_tests_main.cc', |
202 ], | 206 ], |
203 }, | 207 }, |
204 ], # targets | 208 ], # targets |
205 } | 209 } |
OLD | NEW |