| 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 29 matching lines...) Expand all Loading... |
| 40 'include_dirs': [ | 40 'include_dirs': [ |
| 41 '../..', | 41 '../..', |
| 42 '<(SHARED_INTERMEDIATE_DIR)', | 42 '<(SHARED_INTERMEDIATE_DIR)', |
| 43 '<(SHARED_INTERMEDIATE_DIR)/extensions/shell', | 43 '<(SHARED_INTERMEDIATE_DIR)/extensions/shell', |
| 44 ], | 44 ], |
| 45 'sources': [ | 45 'sources': [ |
| 46 'app/shell_main_delegate.cc', | 46 'app/shell_main_delegate.cc', |
| 47 'app/shell_main_delegate.h', | 47 'app/shell_main_delegate.h', |
| 48 'browser/api/shell/shell_api.cc', | 48 'browser/api/shell/shell_api.cc', |
| 49 'browser/api/shell/shell_api.h', | 49 'browser/api/shell/shell_api.h', |
| 50 'browser/api/shell_extensions_api_client.cc', | |
| 51 'browser/api/shell_extensions_api_client.h', | |
| 52 'browser/default_shell_browser_main_delegate.cc', | 50 'browser/default_shell_browser_main_delegate.cc', |
| 53 'browser/default_shell_browser_main_delegate.h', | 51 'browser/default_shell_browser_main_delegate.h', |
| 54 'browser/default_shell_app_window_controller.cc', | 52 'browser/default_shell_app_window_controller.cc', |
| 55 'browser/default_shell_app_window_controller.h', | 53 'browser/default_shell_app_window_controller.h', |
| 56 'browser/shell_app_sorting.cc', | 54 'browser/shell_app_sorting.cc', |
| 57 'browser/shell_app_sorting.h', | 55 'browser/shell_app_sorting.h', |
| 58 'browser/shell_app_window.cc', | 56 'browser/shell_app_window.cc', |
| 59 'browser/shell_app_window.h', | 57 'browser/shell_app_window.h', |
| 60 'browser/shell_app_window_controller.h', | 58 'browser/shell_app_window_controller.h', |
| 61 'browser/shell_browser_context.cc', | 59 'browser/shell_browser_context.cc', |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 '<@(_outputs)', | 192 '<@(_outputs)', |
| 195 ], | 193 ], |
| 196 'includes': [ | 194 'includes': [ |
| 197 '../../build/util/version.gypi', | 195 '../../build/util/version.gypi', |
| 198 ], | 196 ], |
| 199 }, | 197 }, |
| 200 ], | 198 ], |
| 201 }, | 199 }, |
| 202 ], # targets | 200 ], # targets |
| 203 } | 201 } |
| OLD | NEW |