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