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'. Only used on Android. | 8 # compilation targets to 'All'. Only used on Android. |
9 'android_app_targets%': [], | 9 'android_app_targets%': [], |
10 }, | 10 }, |
(...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
712 '../content/content_shell_and_tests.gyp:content_shell', | 712 '../content/content_shell_and_tests.gyp:content_shell', |
713 ], | 713 ], |
714 'conditions': [ | 714 'conditions': [ |
715 ['OS!="win"', { | 715 ['OS!="win"', { |
716 'dependencies': [ | 716 'dependencies': [ |
717 '../net/net.gyp:hpack_fuzz_wrapper', | 717 '../net/net.gyp:hpack_fuzz_wrapper', |
718 '../net/net.gyp:dns_fuzz_stub', | 718 '../net/net.gyp:dns_fuzz_stub', |
719 '../skia/skia.gyp:filter_fuzz_stub', | 719 '../skia/skia.gyp:filter_fuzz_stub', |
720 ], | 720 ], |
721 }], | 721 }], |
722 ['enable_ipc_fuzzer==1 and OS=="linux" and component!="shared_librar
y"', { | 722 ['enable_ipc_fuzzer==1 and component!="shared_library" and ' |
| 723 '(OS=="linux" or OS=="win")', { |
723 'dependencies': [ | 724 'dependencies': [ |
724 '../tools/ipc_fuzzer/ipc_fuzzer.gyp:*', | 725 '../tools/ipc_fuzzer/ipc_fuzzer.gyp:*', |
725 ], | 726 ], |
726 }], | 727 }], |
727 ['chromeos==0', { | 728 ['chromeos==0', { |
728 'dependencies': [ | 729 'dependencies': [ |
729 '../v8/src/d8.gyp:d8#host', | 730 '../v8/src/d8.gyp:d8#host', |
730 '../third_party/pdfium/samples/samples.gyp:pdfium_test', | 731 '../third_party/pdfium/samples/samples.gyp:pdfium_test', |
731 ], | 732 ], |
732 }], | 733 }], |
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1375 'dependencies': [ | 1376 'dependencies': [ |
1376 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1377 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
1377 '../ui/views/views.gyp:views', | 1378 '../ui/views/views.gyp:views', |
1378 '../ui/views/views.gyp:views_unittests', | 1379 '../ui/views/views.gyp:views_unittests', |
1379 ], | 1380 ], |
1380 }, # target_name: macviews_builder | 1381 }, # target_name: macviews_builder |
1381 ], # targets | 1382 ], # targets |
1382 }], # os=='mac' and toolkit_views==1 | 1383 }], # os=='mac' and toolkit_views==1 |
1383 ], # conditions | 1384 ], # conditions |
1384 } | 1385 } |
OLD | NEW |