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

Side by Side Diff: build/all.gyp

Issue 62793002: Allow printing component to be removed completely (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: also fix chromium_builder_tests, coverage_build Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/chrome.gyp » ('j') | 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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 '../content/content_shell_and_tests.gyp:content_shell', 244 '../content/content_shell_and_tests.gyp:content_shell',
245 '../content/content_shell_and_tests.gyp:content_unittests', 245 '../content/content_shell_and_tests.gyp:content_unittests',
246 '../device/device_tests.gyp:device_unittests', 246 '../device/device_tests.gyp:device_unittests',
247 '../google_apis/google_apis.gyp:google_apis_unittests', 247 '../google_apis/google_apis.gyp:google_apis_unittests',
248 '../gpu/gles2_conform_support/gles2_conform_support.gyp:gles2_confor m_support', 248 '../gpu/gles2_conform_support/gles2_conform_support.gyp:gles2_confor m_support',
249 '../gpu/gpu.gyp:gpu_unittests', 249 '../gpu/gpu.gyp:gpu_unittests',
250 '../ipc/ipc.gyp:ipc_tests', 250 '../ipc/ipc.gyp:ipc_tests',
251 '../jingle/jingle.gyp:jingle_unittests', 251 '../jingle/jingle.gyp:jingle_unittests',
252 '../media/media.gyp:media_unittests', 252 '../media/media.gyp:media_unittests',
253 '../ppapi/ppapi_internal.gyp:ppapi_unittests', 253 '../ppapi/ppapi_internal.gyp:ppapi_unittests',
254 '../printing/printing.gyp:printing_unittests',
255 '../remoting/remoting.gyp:remoting_unittests', 254 '../remoting/remoting.gyp:remoting_unittests',
256 '../sync/sync.gyp:sync_unit_tests', 255 '../sync/sync.gyp:sync_unit_tests',
257 '../third_party/WebKit/public/all.gyp:all_blink', 256 '../third_party/WebKit/public/all.gyp:all_blink',
258 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid ation_unittests', 257 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid ation_unittests',
259 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber_uni ttests', 258 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber_uni ttests',
260 '../webkit/renderer/compositor_bindings/compositor_bindings_tests.gy p:webkit_compositor_bindings_unittests', 259 '../webkit/renderer/compositor_bindings/compositor_bindings_tests.gy p:webkit_compositor_bindings_unittests',
261 ], 260 ],
262 }], 261 }],
263 ['OS=="win"', { 262 ['OS=="win"', {
264 'dependencies': [ 263 'dependencies': [
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 ['test_isolation_mode != "noop"', { 342 ['test_isolation_mode != "noop"', {
344 'dependencies': [ 343 'dependencies': [
345 'chromium_swarm_tests', 344 'chromium_swarm_tests',
346 ], 345 ],
347 }], 346 }],
348 ['OS!="android" and OS!="ios"', { 347 ['OS!="android" and OS!="ios"', {
349 'dependencies': [ 348 'dependencies': [
350 '../google_apis/gcm/gcm.gyp:gcm_unit_tests', 349 '../google_apis/gcm/gcm.gyp:gcm_unit_tests',
351 ], 350 ],
352 }], 351 }],
352 ['enable_printing!=0', {
353 'dependencies': [
354 '../printing/printing.gyp:printing_unittests',
355 ],
356 }],
353 ], 357 ],
354 }, # target_name: chromium_builder_tests 358 }, # target_name: chromium_builder_tests
355 { 359 {
356 'target_name': 'chromium_2010_builder_tests', 360 'target_name': 'chromium_2010_builder_tests',
357 'type': 'none', 361 'type': 'none',
358 'dependencies': [ 362 'dependencies': [
359 'chromium_builder_tests', 363 'chromium_builder_tests',
360 ], 364 ],
361 }, # target_name: chromium_2010_builder_tests 365 }, # target_name: chromium_2010_builder_tests
362 ], 366 ],
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
1019 '../chrome/chrome.gyp:interactive_ui_tests_run', 1023 '../chrome/chrome.gyp:interactive_ui_tests_run',
1020 '../chrome/chrome.gyp:sync_integration_tests_run', 1024 '../chrome/chrome.gyp:sync_integration_tests_run',
1021 '../chrome/chrome.gyp:unit_tests_run', 1025 '../chrome/chrome.gyp:unit_tests_run',
1022 '../net/net.gyp:net_unittests_run', 1026 '../net/net.gyp:net_unittests_run',
1023 ], 1027 ],
1024 }, # target_name: chromium_swarm_tests 1028 }, # target_name: chromium_swarm_tests
1025 ], 1029 ],
1026 }], 1030 }],
1027 ], # conditions 1031 ], # conditions
1028 } 1032 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698