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 2079 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2090 ['p2p_apis==1', { | 2090 ['p2p_apis==1', { |
2091 'sources': [ | 2091 'sources': [ |
2092 '../content/browser/renderer_host/p2p/socket_host_test_utils.h', | 2092 '../content/browser/renderer_host/p2p/socket_host_test_utils.h', |
2093 '../content/browser/renderer_host/p2p/socket_host_tcp_unittest.cc', | 2093 '../content/browser/renderer_host/p2p/socket_host_tcp_unittest.cc', |
2094 '../content/browser/renderer_host/p2p/socket_host_tcp_server_unittes
t.cc', | 2094 '../content/browser/renderer_host/p2p/socket_host_tcp_server_unittes
t.cc', |
2095 '../content/browser/renderer_host/p2p/socket_host_udp_unittest.cc', | 2095 '../content/browser/renderer_host/p2p/socket_host_udp_unittest.cc', |
2096 '../content/renderer/p2p/p2p_transport_impl_unittest.cc', | 2096 '../content/renderer/p2p/p2p_transport_impl_unittest.cc', |
2097 ], | 2097 ], |
2098 }], | 2098 }], |
2099 ['use_aura==1', { | 2099 ['use_aura==1', { |
| 2100 'dependencies': [ |
| 2101 '../ui/aura/aura.gyp:test_support_aura', |
| 2102 ], |
2100 'sources/': [ | 2103 'sources/': [ |
2101 ['exclude', '^browser/automation/automation_provider_unittest.cc'], | 2104 ['exclude', '^browser/automation/automation_provider_unittest.cc'], |
| 2105 ['exclude', '^browser/accessibility/browser_accessibility_win_unitte
st.cc'], |
| 2106 ['exclude', '^browser/ui/views/extensions/browser_action_drag_data_u
nittest.cc'], |
| 2107 ['exclude', '^browser/ui/views/select_file_dialog_win_unittest.cc'], |
| 2108 ['exclude', '^browser/ui/views/bookmarks/bookmark_editor_view_unitte
st.cc'], |
| 2109 ['exclude', '^browser/ui/panels/auto_hiding_desktop_bar_win_unittest
.cc'], |
| 2110 ['exclude', '^browser/bookmarks/bookmark_node_data_unittest.cc'], |
2102 ], | 2111 ], |
2103 }], | 2112 }], |
2104 ['touchui==0', { | 2113 ['touchui==0', { |
2105 'sources/': [ | 2114 'sources/': [ |
2106 ['exclude', '^browser/ui/touch/'], | 2115 ['exclude', '^browser/ui/touch/'], |
2107 ['exclude', '^browser/ui/webui/chromeos/login/'], | 2116 ['exclude', '^browser/ui/webui/chromeos/login/'], |
2108 ], | 2117 ], |
2109 }], | 2118 }], |
2110 ['file_manager_extension==0', { | 2119 ['file_manager_extension==0', { |
2111 'sources!': [ | 2120 'sources!': [ |
(...skipping 2228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4340 # Use outputs of this action as inputs for the main target build. | 4349 # Use outputs of this action as inputs for the main target build. |
4341 # Seems as a misnomer but makes this happy on Linux (scons). | 4350 # Seems as a misnomer but makes this happy on Linux (scons). |
4342 'process_outputs_as_sources': 1, | 4351 'process_outputs_as_sources': 1, |
4343 }, | 4352 }, |
4344 ], # 'actions' | 4353 ], # 'actions' |
4345 }, | 4354 }, |
4346 ] | 4355 ] |
4347 }], # 'coverage!=0' | 4356 }], # 'coverage!=0' |
4348 ], # 'conditions' | 4357 ], # 'conditions' |
4349 } | 4358 } |
OLD | NEW |