| 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 'include_dirs': [ | 44 'include_dirs': [ |
| 45 '../..', | 45 '../..', |
| 46 '<(SHARED_INTERMEDIATE_DIR)', | 46 '<(SHARED_INTERMEDIATE_DIR)', |
| 47 '<(SHARED_INTERMEDIATE_DIR)/extensions/shell', | 47 '<(SHARED_INTERMEDIATE_DIR)/extensions/shell', |
| 48 ], | 48 ], |
| 49 'sources': [ | 49 'sources': [ |
| 50 'app/shell_main_delegate.cc', | 50 'app/shell_main_delegate.cc', |
| 51 'app/shell_main_delegate.h', | 51 'app/shell_main_delegate.h', |
| 52 'browser/api/identity/identity_api.cc', | 52 'browser/api/identity/identity_api.cc', |
| 53 'browser/api/identity/identity_api.h', | 53 'browser/api/identity/identity_api.h', |
| 54 'browser/api/shell_gcd/shell_gcd_api.cc', |
| 55 'browser/api/shell_gcd/shell_gcd_api.h', |
| 54 'browser/api/shell_window/shell_window_api.cc', | 56 'browser/api/shell_window/shell_window_api.cc', |
| 55 'browser/api/shell_window/shell_window_api.h', | 57 'browser/api/shell_window/shell_window_api.h', |
| 56 'browser/default_shell_browser_main_delegate.cc', | 58 'browser/default_shell_browser_main_delegate.cc', |
| 57 'browser/default_shell_browser_main_delegate.h', | 59 'browser/default_shell_browser_main_delegate.h', |
| 58 'browser/desktop_controller.cc', | 60 'browser/desktop_controller.cc', |
| 59 'browser/desktop_controller.h', | 61 'browser/desktop_controller.h', |
| 60 'browser/media_capture_util.cc', | 62 'browser/media_capture_util.cc', |
| 61 'browser/media_capture_util.h', | 63 'browser/media_capture_util.h', |
| 62 'browser/shell_app_delegate.cc', | 64 'browser/shell_app_delegate.cc', |
| 63 'browser/shell_app_delegate.h', | 65 'browser/shell_app_delegate.h', |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 '<(DEPTH)/content/content.gyp:content_app_both', | 236 '<(DEPTH)/content/content.gyp:content_app_both', |
| 235 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content', | 237 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content', |
| 236 '<(DEPTH)/extensions/extensions.gyp:extensions_shell_and_test_pak', | 238 '<(DEPTH)/extensions/extensions.gyp:extensions_shell_and_test_pak', |
| 237 '<(DEPTH)/extensions/extensions.gyp:extensions_test_support', | 239 '<(DEPTH)/extensions/extensions.gyp:extensions_test_support', |
| 238 '<(DEPTH)/testing/gtest.gyp:gtest', | 240 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 239 '<(DEPTH)/ui/aura/aura.gyp:aura_test_support', | 241 '<(DEPTH)/ui/aura/aura.gyp:aura_test_support', |
| 240 ], | 242 ], |
| 241 'sources': [ | 243 'sources': [ |
| 242 '../test/extensions_unittests_main.cc', | 244 '../test/extensions_unittests_main.cc', |
| 243 'browser/api/identity/identity_api_unittest.cc', | 245 'browser/api/identity/identity_api_unittest.cc', |
| 246 'browser/api/shell_gcd/shell_gcd_api_unittest.cc', |
| 244 'browser/api/shell_window/shell_window_api_unittest.cc', | 247 'browser/api/shell_window/shell_window_api_unittest.cc', |
| 245 'browser/shell_audio_controller_chromeos_unittest.cc', | 248 'browser/shell_audio_controller_chromeos_unittest.cc', |
| 246 'browser/shell_desktop_controller_unittest.cc', | 249 'browser/shell_desktop_controller_unittest.cc', |
| 247 'browser/shell_nacl_browser_delegate_unittest.cc', | 250 'browser/shell_nacl_browser_delegate_unittest.cc', |
| 248 'browser/shell_oauth2_token_service_unittest.cc', | 251 'browser/shell_oauth2_token_service_unittest.cc', |
| 249 'common/shell_content_client_unittest.cc' | 252 'common/shell_content_client_unittest.cc' |
| 250 ], | 253 ], |
| 251 'conditions': [ | 254 'conditions': [ |
| 252 ['disable_nacl==1', { | 255 ['disable_nacl==1', { |
| 253 'sources!': [ | 256 'sources!': [ |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 '<@(_outputs)', | 301 '<@(_outputs)', |
| 299 ], | 302 ], |
| 300 'includes': [ | 303 'includes': [ |
| 301 '../../build/util/version.gypi', | 304 '../../build/util/version.gypi', |
| 302 ], | 305 ], |
| 303 }, | 306 }, |
| 304 ], | 307 ], |
| 305 }, | 308 }, |
| 306 ], # targets | 309 ], # targets |
| 307 } | 310 } |
| OLD | NEW |