| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
| 9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
| 10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 ], | 24 ], |
| 25 'browser_tests_sources_win_specific': [ | 25 'browser_tests_sources_win_specific': [ |
| 26 'browser/extensions/extension_shelf_model_unittest.cc', | 26 'browser/extensions/extension_shelf_model_unittest.cc', |
| 27 'browser/extensions/extension_browsertest.cc', | 27 'browser/extensions/extension_browsertest.cc', |
| 28 'browser/extensions/test_extension_loader.cc', | 28 'browser/extensions/test_extension_loader.cc', |
| 29 'browser/extensions/test_extension_loader.h', | 29 'browser/extensions/test_extension_loader.h', |
| 30 'browser/views/find_bar_win_browsertest.cc', | 30 'browser/views/find_bar_win_browsertest.cc', |
| 31 # TODO(jam): http://crbug.com/15101 These tests fail on Linux and Mac. | 31 # TODO(jam): http://crbug.com/15101 These tests fail on Linux and Mac. |
| 32 'browser/child_process_security_policy_browser_test.cc', | 32 'browser/child_process_security_policy_browser_test.cc', |
| 33 'browser/renderer_host/web_cache_manager_browser_test.cc', | 33 'browser/renderer_host/web_cache_manager_browser_test.cc', |
| 34 'browser/renderer_host/render_view_host_manager_browsertest.cc', |
| 34 # TODO(jcampan): once the task manager works on Mac, move this test to the | 35 # TODO(jcampan): once the task manager works on Mac, move this test to the |
| 35 # non win specific section. | 36 # non win specific section. |
| 36 'browser/task_manager_browsertest.cc', | 37 'browser/task_manager_browsertest.cc', |
| 37 ], | 38 ], |
| 38 }, | 39 }, |
| 39 'includes': [ | 40 'includes': [ |
| 40 '../build/common.gypi', | 41 '../build/common.gypi', |
| 41 ], | 42 ], |
| 42 'target_defaults': { | 43 'target_defaults': { |
| 43 'sources/': [ | 44 'sources/': [ |
| (...skipping 4795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4839 # Use outputs of this action as inputs for the main target build. | 4840 # Use outputs of this action as inputs for the main target build. |
| 4840 # Seems as a misnomer but makes this happy on Linux (scons). | 4841 # Seems as a misnomer but makes this happy on Linux (scons). |
| 4841 'process_outputs_as_sources': 1, | 4842 'process_outputs_as_sources': 1, |
| 4842 }, | 4843 }, |
| 4843 ], # 'actions' | 4844 ], # 'actions' |
| 4844 }, | 4845 }, |
| 4845 ] | 4846 ] |
| 4846 }], | 4847 }], |
| 4847 ], # 'conditions' | 4848 ], # 'conditions' |
| 4848 } | 4849 } |
| OLD | NEW |