OLD | NEW |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 950 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
961 ], | 961 ], |
962 }], | 962 }], |
963 ['remoting==0', { | 963 ['remoting==0', { |
964 'sources!': [ | 964 'sources!': [ |
965 'service/remoting/chromoting_host_manager.cc', | 965 'service/remoting/chromoting_host_manager.cc', |
966 'service/remoting/chromoting_host_manager.h', | 966 'service/remoting/chromoting_host_manager.h', |
967 ], | 967 ], |
968 }], | 968 }], |
969 ], | 969 ], |
970 }, | 970 }, |
| 971 { |
| 972 'target_name': 'ipclist', |
| 973 'type': 'executable', |
| 974 'dependencies': [ |
| 975 'chrome', |
| 976 'chrome_resources', |
| 977 'chrome_strings', |
| 978 'test_support_common', |
| 979 'test_support_ui', |
| 980 '../skia/skia.gyp:skia', |
| 981 '../testing/gtest.gyp:gtest', |
| 982 '../third_party/libxslt/libxslt.gyp:libxslt', |
| 983 '../third_party/npapi/npapi.gyp:npapi', |
| 984 ], |
| 985 'include_dirs': [ |
| 986 '..', |
| 987 ], |
| 988 'sources': [ |
| 989 'tools/ipclist/all_messages.h', |
| 990 'tools/ipclist/ipclist.cc', |
| 991 ], |
| 992 }, |
971 ], | 993 ], |
972 'conditions': [ | 994 'conditions': [ |
973 ['OS=="mac"', | 995 ['OS=="mac"', |
974 { 'targets': [ | 996 { 'targets': [ |
975 { | 997 { |
976 'target_name': 'helper_app', | 998 'target_name': 'helper_app', |
977 'type': 'executable', | 999 'type': 'executable', |
978 'product_name': '<(mac_product_name) Helper', | 1000 'product_name': '<(mac_product_name) Helper', |
979 'mac_bundle': 1, | 1001 'mac_bundle': 1, |
980 'dependencies': [ | 1002 'dependencies': [ |
(...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1689 }], # targets | 1711 }], # targets |
1690 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" | 1712 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" |
1691 ], # 'conditions' | 1713 ], # 'conditions' |
1692 } | 1714 } |
1693 | 1715 |
1694 # Local Variables: | 1716 # Local Variables: |
1695 # tab-width:2 | 1717 # tab-width:2 |
1696 # indent-tabs-mode:nil | 1718 # indent-tabs-mode:nil |
1697 # End: | 1719 # End: |
1698 # vim: set expandtab tabstop=2 shiftwidth=2: | 1720 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |