Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Side by Side Diff: chrome/chrome.gyp

Issue 6711024: Example of how to interpose yourself in a message stream. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/chrome_common.gypi » ('j') | content/common/child_thread.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 831 matching lines...) Expand 10 before | Expand all | Expand 10 after
842 'service/remoting/chromoting_host_manager.cc', 842 'service/remoting/chromoting_host_manager.cc',
843 'service/remoting/chromoting_host_manager.h', 843 'service/remoting/chromoting_host_manager.h',
844 ], 844 ],
845 }], 845 }],
846 ], 846 ],
847 }, 847 },
848 { 848 {
849 'target_name': 'ipclist', 849 'target_name': 'ipclist',
850 'type': 'executable', 850 'type': 'executable',
851 'dependencies': [ 851 'dependencies': [
852 'chrome', 852 'test_support_common',
jam 2011/04/28 23:43:46 nit: spacing is off
853 'chrome_resources',
854 'chrome_strings',
855 'test_support_common',
856 'test_support_ui',
857 '../skia/skia.gyp:skia', 853 '../skia/skia.gyp:skia',
858 '../testing/gtest.gyp:gtest',
859 '../third_party/libxslt/libxslt.gyp:libxslt',
860 '../third_party/npapi/npapi.gyp:npapi',
861 ], 854 ],
862 'include_dirs': [ 855 'include_dirs': [
863 '..', 856 '..',
864 ], 857 ],
865 'sources': [ 858 'sources': [
866 'tools/ipclist/all_messages.h', 859 'tools/ipclist/all_messages.h',
867 'tools/ipclist/ipclist.cc', 860 'tools/ipclist/ipclist.cc',
868 ], 861 ],
869 }, 862 },
863 {
864 'target_name': 'ipcfuzz',
865 'type': 'loadable_module',
866 'include_dirs': [
867 '..',
868 ],
869 'dependencies': [
870 'test_support_common',
871 '../skia/skia.gyp:skia',
872 ],
873 'sources': [
874 'tools/ipclist/all_messages.h',
875 'tools/ipclist/ipcfuzz.cc',
876 ],
877 },
870 ], 878 ],
871 'conditions': [ 879 'conditions': [
872 ['OS=="mac"', 880 ['OS=="mac"',
873 { 'targets': [ 881 { 'targets': [
874 { 882 {
875 'target_name': 'helper_app', 883 'target_name': 'helper_app',
876 'type': 'executable', 884 'type': 'executable',
877 'product_name': '<(mac_product_name) Helper', 885 'product_name': '<(mac_product_name) Helper',
878 'mac_bundle': 1, 886 'mac_bundle': 1,
879 'dependencies': [ 887 'dependencies': [
(...skipping 725 matching lines...) Expand 10 before | Expand all | Expand 10 after
1605 }], # targets 1613 }], # targets
1606 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris" 1614 }], # OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="solaris"
1607 ], # 'conditions' 1615 ], # 'conditions'
1608 } 1616 }
1609 1617
1610 # Local Variables: 1618 # Local Variables:
1611 # tab-width:2 1619 # tab-width:2
1612 # indent-tabs-mode:nil 1620 # indent-tabs-mode:nil
1613 # End: 1621 # End:
1614 # vim: set expandtab tabstop=2 shiftwidth=2: 1622 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_common.gypi » ('j') | content/common/child_thread.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698