OLD | NEW |
---|---|
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 | 7 |
8 'variables': { | 8 'variables': { |
9 'version_py_path': 'tools/build/version.py', | 9 'version_py_path': 'tools/build/version.py', |
10 'version_path': 'VERSION', | 10 'version_path': 'VERSION', |
(...skipping 849 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
860 '../third_party/npapi/npapi.gyp:npapi', | 860 '../third_party/npapi/npapi.gyp:npapi', |
861 ], | 861 ], |
862 'include_dirs': [ | 862 'include_dirs': [ |
863 '..', | 863 '..', |
864 ], | 864 ], |
865 'sources': [ | 865 'sources': [ |
866 'tools/ipclist/all_messages.h', | 866 'tools/ipclist/all_messages.h', |
867 'tools/ipclist/ipclist.cc', | 867 'tools/ipclist/ipclist.cc', |
868 ], | 868 ], |
869 }, | 869 }, |
870 { | |
871 'target_name': 'ipcfuzz', | |
872 'type': 'loadable_module', | |
873 'include_dirs': [ | |
874 '..', | |
875 ], | |
876 'dependencies': [ | |
877 'chrome', | |
jam
2011/04/27 21:58:07
are all these needed? i.e. chrome_resources/chrom
| |
878 'chrome_resources', | |
879 'chrome_strings', | |
880 'test_support_common', | |
881 'test_support_ui', | |
882 '../skia/skia.gyp:skia', | |
883 '../testing/gtest.gyp:gtest', | |
884 '../third_party/libxslt/libxslt.gyp:libxslt', | |
885 '../third_party/npapi/npapi.gyp:npapi', | |
886 ], | |
887 'sources': [ | |
888 'tools/ipclist/all_messages.h', | |
889 'tools/ipclist/ipcfuzz.cc', | |
890 ], | |
891 }, | |
870 ], | 892 ], |
871 'conditions': [ | 893 'conditions': [ |
872 ['OS=="mac"', | 894 ['OS=="mac"', |
873 { 'targets': [ | 895 { 'targets': [ |
874 { | 896 { |
875 'target_name': 'helper_app', | 897 'target_name': 'helper_app', |
876 'type': 'executable', | 898 'type': 'executable', |
877 'product_name': '<(mac_product_name) Helper', | 899 'product_name': '<(mac_product_name) Helper', |
878 'mac_bundle': 1, | 900 'mac_bundle': 1, |
879 'dependencies': [ | 901 'dependencies': [ |
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1602 }], # targets | 1624 }], # targets |
1603 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1625 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
1604 ], # 'conditions' | 1626 ], # 'conditions' |
1605 } | 1627 } |
1606 | 1628 |
1607 # Local Variables: | 1629 # Local Variables: |
1608 # tab-width:2 | 1630 # tab-width:2 |
1609 # indent-tabs-mode:nil | 1631 # indent-tabs-mode:nil |
1610 # End: | 1632 # End: |
1611 # vim: set expandtab tabstop=2 shiftwidth=2: | 1633 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |