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

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, 8 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/tools/ipclist/all_messages.h » ('j') | content/common/child_thread.cc » ('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 849 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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:
OLDNEW
« no previous file with comments | « no previous file | chrome/tools/ipclist/all_messages.h » ('j') | content/common/child_thread.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698