| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 'include_dirs': [ | 97 'include_dirs': [ |
| 98 '../..', | 98 '../..', |
| 99 '<(SHARED_INTERMEDIATE_DIR)', | 99 '<(SHARED_INTERMEDIATE_DIR)', |
| 100 '<(SHARED_INTERMEDIATE_DIR)/extensions/shell', | 100 '<(SHARED_INTERMEDIATE_DIR)/extensions/shell', |
| 101 ], | 101 ], |
| 102 'sources': [ | 102 'sources': [ |
| 103 'app/shell_main_delegate.cc', | 103 'app/shell_main_delegate.cc', |
| 104 'app/shell_main_delegate.h', | 104 'app/shell_main_delegate.h', |
| 105 'browser/api/shell/shell_api.cc', | 105 'browser/api/shell/shell_api.cc', |
| 106 'browser/api/shell/shell_api.h', | 106 'browser/api/shell/shell_api.h', |
| 107 'browser/api/shell_extensions_api_client.cc', |
| 108 'browser/api/shell_extensions_api_client.h', |
| 107 'browser/default_shell_browser_main_delegate.cc', | 109 'browser/default_shell_browser_main_delegate.cc', |
| 108 'browser/default_shell_browser_main_delegate.h', | 110 'browser/default_shell_browser_main_delegate.h', |
| 109 'browser/default_shell_app_window_controller.cc', | 111 'browser/default_shell_app_window_controller.cc', |
| 110 'browser/default_shell_app_window_controller.h', | 112 'browser/default_shell_app_window_controller.h', |
| 111 'browser/shell_app_sorting.cc', | 113 'browser/shell_app_sorting.cc', |
| 112 'browser/shell_app_sorting.h', | 114 'browser/shell_app_sorting.h', |
| 113 'browser/shell_app_window.cc', | 115 'browser/shell_app_window.cc', |
| 114 'browser/shell_app_window.h', | 116 'browser/shell_app_window.h', |
| 115 'browser/shell_app_window_controller.h', | 117 'browser/shell_app_window_controller.h', |
| 116 'browser/shell_browser_context.cc', | 118 'browser/shell_browser_context.cc', |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 'browser/shell_browsertest.cc', | 216 'browser/shell_browsertest.cc', |
| 215 'test/shell_test.h', | 217 'test/shell_test.h', |
| 216 'test/shell_test.cc', | 218 'test/shell_test.cc', |
| 217 'test/shell_test_launcher_delegate.cc', | 219 'test/shell_test_launcher_delegate.cc', |
| 218 'test/shell_test_launcher_delegate.h', | 220 'test/shell_test_launcher_delegate.h', |
| 219 'test/shell_tests_main.cc', | 221 'test/shell_tests_main.cc', |
| 220 ], | 222 ], |
| 221 }, | 223 }, |
| 222 ], # targets | 224 ], # targets |
| 223 } | 225 } |
| OLD | NEW |