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

Side by Side Diff: build/all.gyp

Issue 2017853002: Add functionality to the install_static library to tokenize strings and compare versions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix windows gn builder redness Created 4 years, 7 months 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
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 'variables': { 6 'variables': {
7 # A hook that can be overridden in other repositories to add additional 7 # A hook that can be overridden in other repositories to add additional
8 # compilation targets to 'All'. 8 # compilation targets to 'All'.
9 'app_targets%': [], 9 'app_targets%': [],
10 # For Android-specific targets. 10 # For Android-specific targets.
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 '../extensions/extensions_tests.gyp:extensions_browsertests', 367 '../extensions/extensions_tests.gyp:extensions_browsertests',
368 '../extensions/extensions_tests.gyp:extensions_unittests', 368 '../extensions/extensions_tests.gyp:extensions_unittests',
369 ], 369 ],
370 }], 370 }],
371 ['OS=="win"', { 371 ['OS=="win"', {
372 'dependencies': [ 372 'dependencies': [
373 '../chrome/chrome.gyp:installer_util_unittests', 373 '../chrome/chrome.gyp:installer_util_unittests',
374 '../chrome/chrome.gyp:setup_unittests', 374 '../chrome/chrome.gyp:setup_unittests',
375 # ../chrome/test/mini_installer requires mini_installer. 375 # ../chrome/test/mini_installer requires mini_installer.
376 '../chrome/installer/mini_installer.gyp:mini_installer', 376 '../chrome/installer/mini_installer.gyp:mini_installer',
377 '../chrome/chrome.gyp:install_static_unittests',
grt (UTC plus 2) 2016/05/27 14:13:20 move up to maintain ordering
ananta 2016/05/27 20:05:25 Done.
377 '../chrome_elf/chrome_elf.gyp:chrome_elf_unittests', 378 '../chrome_elf/chrome_elf.gyp:chrome_elf_unittests',
378 '../courgette/courgette.gyp:courgette_unittests', 379 '../courgette/courgette.gyp:courgette_unittests',
379 '../sandbox/sandbox.gyp:sbox_integration_tests', 380 '../sandbox/sandbox.gyp:sbox_integration_tests',
380 '../sandbox/sandbox.gyp:sbox_unittests', 381 '../sandbox/sandbox.gyp:sbox_unittests',
381 '../sandbox/sandbox.gyp:sbox_validation_tests', 382 '../sandbox/sandbox.gyp:sbox_validation_tests',
382 ], 383 ],
383 'conditions': [ 384 'conditions': [
384 # remoting_host_installation uses lots of non-trivial GYP that tend 385 # remoting_host_installation uses lots of non-trivial GYP that tend
385 # to break because of differences between ninja and msbuild. Make 386 # to break because of differences between ninja and msbuild. Make
386 # sure this target is built by the builders on the main waterfall. 387 # sure this target is built by the builders on the main waterfall.
(...skipping 952 matching lines...) Expand 10 before | Expand all | Expand 10 after
1339 'dependencies': [ 1340 'dependencies': [
1340 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', 1341 '../ui/views/examples/examples.gyp:views_examples_with_content_exe',
1341 '../ui/views/views.gyp:views', 1342 '../ui/views/views.gyp:views',
1342 '../ui/views/views.gyp:views_unittests', 1343 '../ui/views/views.gyp:views_unittests',
1343 ], 1344 ],
1344 }, # target_name: macviews_builder 1345 }, # target_name: macviews_builder
1345 ], # targets 1346 ], # targets
1346 }], # os=='mac' and toolkit_views==1 1347 }], # os=='mac' and toolkit_views==1
1347 ], # conditions 1348 ], # conditions
1348 } 1349 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698