| 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 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 678 }, # target_name: chromium_builder_chromedriver | 678 }, # target_name: chromium_builder_chromedriver |
| 679 { | 679 { |
| 680 'target_name': 'chromium_builder_asan', | 680 'target_name': 'chromium_builder_asan', |
| 681 'type': 'none', | 681 'type': 'none', |
| 682 'dependencies': [ | 682 'dependencies': [ |
| 683 '../chrome/chrome.gyp:chrome', | 683 '../chrome/chrome.gyp:chrome', |
| 684 | 684 |
| 685 # We refer to content_shell directly rather than blink_tests | 685 # We refer to content_shell directly rather than blink_tests |
| 686 # because we don't want the _unittests binaries. | 686 # because we don't want the _unittests binaries. |
| 687 '../content/content_shell_and_tests.gyp:content_shell', | 687 '../content/content_shell_and_tests.gyp:content_shell', |
| 688 |
| 689 '../v8/src/d8.gyp:d8', |
| 688 ], | 690 ], |
| 689 'conditions': [ | 691 'conditions': [ |
| 690 ['OS!="win"', { | 692 ['OS!="win"', { |
| 691 'dependencies': [ | 693 'dependencies': [ |
| 692 '../net/net.gyp:hpack_fuzz_wrapper', | 694 '../net/net.gyp:hpack_fuzz_wrapper', |
| 693 '../net/net.gyp:dns_fuzz_stub', | 695 '../net/net.gyp:dns_fuzz_stub', |
| 694 '../skia/skia.gyp:filter_fuzz_stub', | 696 '../skia/skia.gyp:filter_fuzz_stub', |
| 695 ], | 697 ], |
| 696 }], | 698 }], |
| 697 ['enable_ipc_fuzzer==1 and component!="shared_library" and ' | 699 ['enable_ipc_fuzzer==1 and component!="shared_library" and ' |
| (...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1340 'dependencies': [ | 1342 'dependencies': [ |
| 1341 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1343 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
| 1342 '../ui/views/views.gyp:views', | 1344 '../ui/views/views.gyp:views', |
| 1343 '../ui/views/views.gyp:views_unittests', | 1345 '../ui/views/views.gyp:views_unittests', |
| 1344 ], | 1346 ], |
| 1345 }, # target_name: macviews_builder | 1347 }, # target_name: macviews_builder |
| 1346 ], # targets | 1348 ], # targets |
| 1347 }], # os=='mac' and toolkit_views==1 | 1349 }], # os=='mac' and toolkit_views==1 |
| 1348 ], # conditions | 1350 ], # conditions |
| 1349 } | 1351 } |
| OLD | NEW |