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 2207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2218 'browser/views/tabs/tab_overview_message_listener.h', | 2218 'browser/views/tabs/tab_overview_message_listener.h', |
2219 'browser/views/tabs/tab_overview_types.cc', | 2219 'browser/views/tabs/tab_overview_types.cc', |
2220 'browser/views/tabs/tab_overview_types.h', | 2220 'browser/views/tabs/tab_overview_types.h', |
2221 ], | 2221 ], |
2222 'configurations': { | 2222 'configurations': { |
2223 'Debug': { | 2223 'Debug': { |
2224 'msvs_precompiled_header': 'tools/build/win/precompiled_wtl.h', | 2224 'msvs_precompiled_header': 'tools/build/win/precompiled_wtl.h', |
2225 'msvs_precompiled_source': 'tools/build/win/precompiled_wtl.cc', | 2225 'msvs_precompiled_source': 'tools/build/win/precompiled_wtl.cc', |
2226 }, | 2226 }, |
2227 }, | 2227 }, |
| 2228 'conditions': [ |
| 2229 ['use_syncapi_stub==1', { |
| 2230 'sources': [ |
| 2231 'browser/sync/engine/syncapi_stub.cc', |
| 2232 ], |
| 2233 }] # use_syncapi_stub==1 |
| 2234 ], |
2228 }, { # 'OS!="win" | 2235 }, { # 'OS!="win" |
2229 'sources/': [ | 2236 'sources/': [ |
2230 # Exclude all of hang_monitor. | 2237 # Exclude all of hang_monitor. |
2231 ['exclude', '^browser/hang_monitor/'], | 2238 ['exclude', '^browser/hang_monitor/'], |
2232 | 2239 |
2233 # Exclude parts of password_manager. | 2240 # Exclude parts of password_manager. |
2234 ['exclude', '^browser/password_manager/ie7_password\\.cc$'], | 2241 ['exclude', '^browser/password_manager/ie7_password\\.cc$'], |
2235 | 2242 |
2236 # Exclude most of printing. | 2243 # Exclude most of printing. |
2237 ['exclude', '^browser/printing/'], | 2244 ['exclude', '^browser/printing/'], |
(...skipping 2678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4916 'test/automation/tab_proxy.cc', | 4923 'test/automation/tab_proxy.cc', |
4917 'test/automation/tab_proxy.h', | 4924 'test/automation/tab_proxy.h', |
4918 'test/automation/window_proxy.cc', | 4925 'test/automation/window_proxy.cc', |
4919 'test/automation/window_proxy.h', | 4926 'test/automation/window_proxy.h', |
4920 ], | 4927 ], |
4921 }, | 4928 }, |
4922 { | 4929 { |
4923 # Windows-only for now; this has issues with scons | 4930 # Windows-only for now; this has issues with scons |
4924 # regarding use of run_all_unittests.cc. | 4931 # regarding use of run_all_unittests.cc. |
4925 # TODO(zork): add target to linux build. | 4932 # TODO(zork): add target to linux build. |
4926 'target_name': 'live_sync_tests', | 4933 'target_name': 'sync_integration_tests', |
4927 'type': 'executable', | 4934 'type': 'executable', |
4928 'dependencies': [ | 4935 'dependencies': [ |
4929 'browser', | 4936 'browser', |
4930 'chrome', | 4937 'chrome', |
4931 'chrome_resources', | 4938 'chrome_resources', |
4932 'common', | 4939 'common', |
4933 'debugger', | 4940 'debugger', |
4934 'renderer', | 4941 'renderer', |
4935 'chrome_resources', | 4942 'chrome_resources', |
4936 'chrome_strings', | 4943 'chrome_strings', |
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5399 # Use outputs of this action as inputs for the main target build. | 5406 # Use outputs of this action as inputs for the main target build. |
5400 # Seems as a misnomer but makes this happy on Linux (scons). | 5407 # Seems as a misnomer but makes this happy on Linux (scons). |
5401 'process_outputs_as_sources': 1, | 5408 'process_outputs_as_sources': 1, |
5402 }, | 5409 }, |
5403 ], # 'actions' | 5410 ], # 'actions' |
5404 }, | 5411 }, |
5405 ] | 5412 ] |
5406 }], | 5413 }], |
5407 ], # 'conditions' | 5414 ], # 'conditions' |
5408 } | 5415 } |
OLD | NEW |