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 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content', | 197 '<(DEPTH)/content/content_shell_and_tests.gyp:test_support_content', |
198 '<(DEPTH)/extensions/extensions.gyp:extensions_shell_and_test_pak', | 198 '<(DEPTH)/extensions/extensions.gyp:extensions_shell_and_test_pak', |
199 '<(DEPTH)/extensions/extensions.gyp:extensions_test_support', | 199 '<(DEPTH)/extensions/extensions.gyp:extensions_test_support', |
200 '<(DEPTH)/testing/gtest.gyp:gtest', | 200 '<(DEPTH)/testing/gtest.gyp:gtest', |
201 '<(DEPTH)/ui/aura/aura.gyp:aura_test_support', | 201 '<(DEPTH)/ui/aura/aura.gyp:aura_test_support', |
202 ], | 202 ], |
203 'sources': [ | 203 'sources': [ |
204 '../test/extensions_unittests_main.cc', | 204 '../test/extensions_unittests_main.cc', |
205 'browser/shell_desktop_controller_unittest.cc', | 205 'browser/shell_desktop_controller_unittest.cc', |
206 'browser/shell_nacl_browser_delegate_unittest.cc', | 206 'browser/shell_nacl_browser_delegate_unittest.cc', |
| 207 'common/shell_content_client_unittest.cc' |
207 ], | 208 ], |
208 'conditions': [ | 209 'conditions': [ |
209 ['disable_nacl==1', { | 210 ['disable_nacl==1', { |
210 'sources!': [ | 211 'sources!': [ |
211 'browser/shell_nacl_browser_delegate_unittest.cc', | 212 'browser/shell_nacl_browser_delegate_unittest.cc', |
212 ], | 213 ], |
213 }], | 214 }], |
214 ['chromeos==1', { | 215 ['chromeos==1', { |
215 'dependencies': [ | 216 'dependencies': [ |
216 '<(DEPTH)/chromeos/chromeos.gyp:chromeos_test_support_without_gmock'
, | 217 '<(DEPTH)/chromeos/chromeos.gyp:chromeos_test_support_without_gmock'
, |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 '<@(_outputs)', | 251 '<@(_outputs)', |
251 ], | 252 ], |
252 'includes': [ | 253 'includes': [ |
253 '../../build/util/version.gypi', | 254 '../../build/util/version.gypi', |
254 ], | 255 ], |
255 }, | 256 }, |
256 ], | 257 ], |
257 }, | 258 }, |
258 ], # targets | 259 ], # targets |
259 } | 260 } |
OLD | NEW |