OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |