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

Side by Side Diff: build/all.gyp

Issue 1902233003: Add next_version_mini_installer target. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: self review Created 4 years, 8 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 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 ], 423 ],
424 'msvs_settings': { 424 'msvs_settings': {
425 'VCLinkerTool': { 425 'VCLinkerTool': {
426 # Enable profile information (necessary for SyzyAsan 426 # Enable profile information (necessary for SyzyAsan
427 # instrumentation). This is incompatible with incremental 427 # instrumentation). This is incompatible with incremental
428 # linking. 428 # linking.
429 'Profile': 'true', 429 'Profile': 'true',
430 }, 430 },
431 } 431 }
432 }], 432 }],
433 ['component!="shared_library"', {
434 'dependencies': [
435 '../chrome/installer/mini_installer.gyp:next_version_mini_instal ler',
436 ],
437 }],
433 ], 438 ],
434 }], 439 }],
435 ['chromeos==1', { 440 ['chromeos==1', {
436 'dependencies': [ 441 'dependencies': [
437 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_unittests', 442 '../ui/chromeos/ui_chromeos.gyp:ui_chromeos_unittests',
438 '../ui/arc/arc.gyp:ui_arc_unittests', 443 '../ui/arc/arc.gyp:ui_arc_unittests',
439 ], 444 ],
440 }], 445 }],
441 ['OS=="linux"', { 446 ['OS=="linux"', {
442 'dependencies': [ 447 'dependencies': [
(...skipping 947 matching lines...) Expand 10 before | Expand all | Expand 10 after
1390 'dependencies': [ 1395 'dependencies': [
1391 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', 1396 '../ui/views/examples/examples.gyp:views_examples_with_content_exe',
1392 '../ui/views/views.gyp:views', 1397 '../ui/views/views.gyp:views',
1393 '../ui/views/views.gyp:views_unittests', 1398 '../ui/views/views.gyp:views_unittests',
1394 ], 1399 ],
1395 }, # target_name: macviews_builder 1400 }, # target_name: macviews_builder
1396 ], # targets 1401 ], # targets
1397 }], # os=='mac' and toolkit_views==1 1402 }], # os=='mac' and toolkit_views==1
1398 ], # conditions 1403 ], # conditions
1399 } 1404 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698