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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 'browser/default_shell_browser_main_delegate.h', | 55 'browser/default_shell_browser_main_delegate.h', |
56 'browser/desktop_controller.cc', | 56 'browser/desktop_controller.cc', |
57 'browser/desktop_controller.h', | 57 'browser/desktop_controller.h', |
58 'browser/media_capture_util.cc', | 58 'browser/media_capture_util.cc', |
59 'browser/media_capture_util.h', | 59 'browser/media_capture_util.h', |
60 'browser/shell_app_sorting.cc', | 60 'browser/shell_app_sorting.cc', |
61 'browser/shell_app_sorting.h', | 61 'browser/shell_app_sorting.h', |
62 'browser/shell_app_window.cc', | 62 'browser/shell_app_window.cc', |
63 'browser/shell_app_window.h', | 63 'browser/shell_app_window.h', |
64 'browser/shell_app_window_controller.h', | 64 'browser/shell_app_window_controller.h', |
| 65 'browser/shell_audio_controller_chromeos.cc', |
| 66 'browser/shell_audio_controller_chromeos.h', |
65 'browser/shell_browser_context.cc', | 67 'browser/shell_browser_context.cc', |
66 'browser/shell_browser_context.h', | 68 'browser/shell_browser_context.h', |
67 'browser/shell_browser_main_delegate.h', | 69 'browser/shell_browser_main_delegate.h', |
68 'browser/shell_browser_main_parts.cc', | 70 'browser/shell_browser_main_parts.cc', |
69 'browser/shell_browser_main_parts.h', | 71 'browser/shell_browser_main_parts.h', |
70 'browser/shell_content_browser_client.cc', | 72 'browser/shell_content_browser_client.cc', |
71 'browser/shell_content_browser_client.h', | 73 'browser/shell_content_browser_client.h', |
72 'browser/shell_desktop_controller.cc', | 74 'browser/shell_desktop_controller.cc', |
73 'browser/shell_desktop_controller.h', | 75 'browser/shell_desktop_controller.h', |
74 'browser/shell_extension_host_delegate.cc', | 76 'browser/shell_extension_host_delegate.cc', |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 '<(DEPTH)/base/base.gyp:test_support_base', | 199 '<(DEPTH)/base/base.gyp:test_support_base', |
198 '<(DEPTH)/content/content.gyp:content_app_both', | 200 '<(DEPTH)/content/content.gyp:content_app_both', |
199 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content', | 201 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content', |
200 '<(DEPTH)/extensions/extensions.gyp:extensions_shell_and_test_pak', | 202 '<(DEPTH)/extensions/extensions.gyp:extensions_shell_and_test_pak', |
201 '<(DEPTH)/extensions/extensions.gyp:extensions_test_support', | 203 '<(DEPTH)/extensions/extensions.gyp:extensions_test_support', |
202 '<(DEPTH)/testing/gtest.gyp:gtest', | 204 '<(DEPTH)/testing/gtest.gyp:gtest', |
203 '<(DEPTH)/ui/aura/aura.gyp:aura_test_support', | 205 '<(DEPTH)/ui/aura/aura.gyp:aura_test_support', |
204 ], | 206 ], |
205 'sources': [ | 207 'sources': [ |
206 '../test/extensions_unittests_main.cc', | 208 '../test/extensions_unittests_main.cc', |
| 209 'browser/shell_audio_controller_chromeos_unittest.cc', |
207 'browser/shell_desktop_controller_unittest.cc', | 210 'browser/shell_desktop_controller_unittest.cc', |
208 'browser/shell_nacl_browser_delegate_unittest.cc', | 211 'browser/shell_nacl_browser_delegate_unittest.cc', |
209 'common/shell_content_client_unittest.cc' | 212 'common/shell_content_client_unittest.cc' |
210 ], | 213 ], |
211 'conditions': [ | 214 'conditions': [ |
212 ['disable_nacl==1', { | 215 ['disable_nacl==1', { |
213 'sources!': [ | 216 'sources!': [ |
214 'browser/shell_nacl_browser_delegate_unittest.cc', | 217 'browser/shell_nacl_browser_delegate_unittest.cc', |
215 ], | 218 ], |
216 }], | 219 }], |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 '<@(_outputs)', | 256 '<@(_outputs)', |
254 ], | 257 ], |
255 'includes': [ | 258 'includes': [ |
256 '../../build/util/version.gypi', | 259 '../../build/util/version.gypi', |
257 ], | 260 ], |
258 }, | 261 }, |
259 ], | 262 ], |
260 }, | 263 }, |
261 ], # targets | 264 ], # targets |
262 } | 265 } |
OLD | NEW |