| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'target_defaults': { | 5 'target_defaults': { |
| 6 'conditions': [ | 6 'conditions': [ |
| 7 ['strip_tests==1', { | 7 ['strip_tests==1', { |
| 8 'cflags!': [ '-g' ], | 8 'cflags!': [ '-g' ], |
| 9 'ldflags': [ '-Wl,--strip-debug' ], | 9 'ldflags': [ '-Wl,--strip-debug' ], |
| 10 }], | 10 }], |
| (...skipping 942 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 953 'include_dirs': [ | 953 'include_dirs': [ |
| 954 '..', | 954 '..', |
| 955 ], | 955 ], |
| 956 'sources': [ | 956 'sources': [ |
| 957 'test/webdriver/commands/alert_commands.cc', | 957 'test/webdriver/commands/alert_commands.cc', |
| 958 'test/webdriver/commands/alert_commands.h', | 958 'test/webdriver/commands/alert_commands.h', |
| 959 'test/webdriver/commands/appcache_status_command.cc', | 959 'test/webdriver/commands/appcache_status_command.cc', |
| 960 'test/webdriver/commands/appcache_status_command.h', | 960 'test/webdriver/commands/appcache_status_command.h', |
| 961 'test/webdriver/commands/browser_connection_commands.cc', | 961 'test/webdriver/commands/browser_connection_commands.cc', |
| 962 'test/webdriver/commands/browser_connection_commands.h', | 962 'test/webdriver/commands/browser_connection_commands.h', |
| 963 'test/webdriver/commands/chrome_commands.cc', |
| 964 'test/webdriver/commands/chrome_commands.h', |
| 963 'test/webdriver/commands/command.cc', | 965 'test/webdriver/commands/command.cc', |
| 964 'test/webdriver/commands/command.h', | 966 'test/webdriver/commands/command.h', |
| 965 'test/webdriver/commands/cookie_commands.cc', | 967 'test/webdriver/commands/cookie_commands.cc', |
| 966 'test/webdriver/commands/cookie_commands.h', | 968 'test/webdriver/commands/cookie_commands.h', |
| 967 'test/webdriver/commands/create_session.cc', | 969 'test/webdriver/commands/create_session.cc', |
| 968 'test/webdriver/commands/create_session.h', | 970 'test/webdriver/commands/create_session.h', |
| 969 'test/webdriver/commands/execute_async_script_command.cc', | 971 'test/webdriver/commands/execute_async_script_command.cc', |
| 970 'test/webdriver/commands/execute_async_script_command.h', | 972 'test/webdriver/commands/execute_async_script_command.h', |
| 971 'test/webdriver/commands/execute_command.cc', | 973 'test/webdriver/commands/execute_command.cc', |
| 972 'test/webdriver/commands/execute_command.h', | 974 'test/webdriver/commands/execute_command.h', |
| (...skipping 3369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4342 # Use outputs of this action as inputs for the main target build. | 4344 # Use outputs of this action as inputs for the main target build. |
| 4343 # Seems as a misnomer but makes this happy on Linux (scons). | 4345 # Seems as a misnomer but makes this happy on Linux (scons). |
| 4344 'process_outputs_as_sources': 1, | 4346 'process_outputs_as_sources': 1, |
| 4345 }, | 4347 }, |
| 4346 ], # 'actions' | 4348 ], # 'actions' |
| 4347 }, | 4349 }, |
| 4348 ] | 4350 ] |
| 4349 }], # 'coverage!=0' | 4351 }], # 'coverage!=0' |
| 4350 ], # 'conditions' | 4352 ], # 'conditions' |
| 4351 } | 4353 } |
| OLD | NEW |