Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(356)

Side by Side Diff: build/all.gyp

Issue 101703004: Add chrome_elf_unittests to chromium_builder_tests and chrome_elf to All (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add elf to all Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'All', 8 'target_name': 'All',
9 'type': 'none', 9 'type': 'none',
10 'xcode_create_dependents_test_runner': 1, 10 'xcode_create_dependents_test_runner': 1,
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 ['target_arch!="x64"', { 152 ['target_arch!="x64"', {
153 'dependencies': [ 153 'dependencies': [
154 # TODO(jschuh) Enable Win64 Memory Watcher. crbug.com/176877 154 # TODO(jschuh) Enable Win64 Memory Watcher. crbug.com/176877
155 '../tools/memory_watcher/memory_watcher.gyp:*', 155 '../tools/memory_watcher/memory_watcher.gyp:*',
156 # TODO(jschuh) Enable Win64 Chrome Frame. crbug.com/176875 156 # TODO(jschuh) Enable Win64 Chrome Frame. crbug.com/176875
157 '../chrome_frame/chrome_frame.gyp:*', 157 '../chrome_frame/chrome_frame.gyp:*',
158 ], 158 ],
159 }], 159 }],
160 ], 160 ],
161 'dependencies': [ 161 'dependencies': [
162 '../chrome_elf/chrome_elf.gyp:*',
162 '../cloud_print/cloud_print.gyp:*', 163 '../cloud_print/cloud_print.gyp:*',
163 '../courgette/courgette.gyp:*', 164 '../courgette/courgette.gyp:*',
164 '../rlz/rlz.gyp:*', 165 '../rlz/rlz.gyp:*',
165 '../sandbox/sandbox.gyp:*', 166 '../sandbox/sandbox.gyp:*',
166 '../third_party/angle_dx11/src/build_angle.gyp:*', 167 '../third_party/angle_dx11/src/build_angle.gyp:*',
167 '../third_party/bspatch/bspatch.gyp:*', 168 '../third_party/bspatch/bspatch.gyp:*',
168 ], 169 ],
169 }, { 170 }, {
170 'dependencies': [ 171 'dependencies': [
171 '../third_party/libevent/libevent.gyp:*', 172 '../third_party/libevent/libevent.gyp:*',
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 ], 270 ],
270 }], 271 }],
271 ['OS=="win"', { 272 ['OS=="win"', {
272 'dependencies': [ 273 'dependencies': [
273 '../chrome/chrome.gyp:crash_service', 274 '../chrome/chrome.gyp:crash_service',
274 '../chrome/chrome.gyp:installer_util_unittests', 275 '../chrome/chrome.gyp:installer_util_unittests',
275 '../chrome/chrome.gyp:mini_installer_test', 276 '../chrome/chrome.gyp:mini_installer_test',
276 # mini_installer_tests depends on mini_installer. This should be 277 # mini_installer_tests depends on mini_installer. This should be
277 # defined in installer.gyp. 278 # defined in installer.gyp.
278 '../chrome/installer/mini_installer.gyp:mini_installer', 279 '../chrome/installer/mini_installer.gyp:mini_installer',
280 '../chrome_elf/chrome_elf.gyp:chrome_elf_unittests',
279 '../chrome_frame/chrome_frame.gyp:npchrome_frame', 281 '../chrome_frame/chrome_frame.gyp:npchrome_frame',
280 '../courgette/courgette.gyp:courgette_unittests', 282 '../courgette/courgette.gyp:courgette_unittests',
281 '../sandbox/sandbox.gyp:sbox_integration_tests', 283 '../sandbox/sandbox.gyp:sbox_integration_tests',
282 '../sandbox/sandbox.gyp:sbox_unittests', 284 '../sandbox/sandbox.gyp:sbox_unittests',
283 '../sandbox/sandbox.gyp:sbox_validation_tests', 285 '../sandbox/sandbox.gyp:sbox_validation_tests',
284 '../third_party/WebKit/public/blink_test_plugin.gyp:blink_test_plugi n', 286 '../third_party/WebKit/public/blink_test_plugin.gyp:blink_test_plugi n',
285 '../ui/app_list/app_list.gyp:app_list_unittests', 287 '../ui/app_list/app_list.gyp:app_list_unittests',
286 '../ui/views/views.gyp:views_unittests', 288 '../ui/views/views.gyp:views_unittests',
287 ], 289 ],
288 'conditions': [ 290 'conditions': [
(...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after
1077 '../chrome/chrome.gyp:interactive_ui_tests_run', 1079 '../chrome/chrome.gyp:interactive_ui_tests_run',
1078 '../chrome/chrome.gyp:sync_integration_tests_run', 1080 '../chrome/chrome.gyp:sync_integration_tests_run',
1079 '../chrome/chrome.gyp:unit_tests_run', 1081 '../chrome/chrome.gyp:unit_tests_run',
1080 '../net/net.gyp:net_unittests_run', 1082 '../net/net.gyp:net_unittests_run',
1081 ], 1083 ],
1082 }, # target_name: chromium_swarm_tests 1084 }, # target_name: chromium_swarm_tests
1083 ], 1085 ],
1084 }], 1086 }],
1085 ], # conditions 1087 ], # conditions
1086 } 1088 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698