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: base/base.gypi

Issue 18178015: Implement /proc/self/maps/ parsing code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 5 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
OLDNEW
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 'target_defaults': { 6 'target_defaults': {
7 'variables': { 7 'variables': {
8 'base_target': 0, 8 'base_target': 0,
9 }, 9 },
10 'target_conditions': [ 10 'target_conditions': [
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 'debug/debug_on_start_win.h', 126 'debug/debug_on_start_win.h',
127 'debug/debugger.cc', 127 'debug/debugger.cc',
128 'debug/debugger.h', 128 'debug/debugger.h',
129 'debug/debugger_posix.cc', 129 'debug/debugger_posix.cc',
130 'debug/debugger_win.cc', 130 'debug/debugger_win.cc',
131 # This file depends on files from the 'allocator' target, 131 # This file depends on files from the 'allocator' target,
132 # but this target does not depend on 'allocator' (see 132 # but this target does not depend on 'allocator' (see
133 # allocator.gyp for details). 133 # allocator.gyp for details).
134 'debug/leak_annotations.h', 134 'debug/leak_annotations.h',
135 'debug/leak_tracker.h', 135 'debug/leak_tracker.h',
136 'debug/proc_maps_linux.cc',
137 'debug/proc_maps_linux.h',
136 'debug/profiler.cc', 138 'debug/profiler.cc',
137 'debug/profiler.h', 139 'debug/profiler.h',
138 'debug/stack_trace.cc', 140 'debug/stack_trace.cc',
139 'debug/stack_trace.h', 141 'debug/stack_trace.h',
140 'debug/stack_trace_android.cc', 142 'debug/stack_trace_android.cc',
141 'debug/stack_trace_ios.mm', 143 'debug/stack_trace_ios.mm',
142 'debug/stack_trace_posix.cc', 144 'debug/stack_trace_posix.cc',
143 'debug/stack_trace_win.cc', 145 'debug/stack_trace_win.cc',
144 'debug/trace_event.h', 146 'debug/trace_event.h',
145 'debug/trace_event_android.cc', 147 'debug/trace_event_android.cc',
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after
709 ], 711 ],
710 }], 712 }],
711 ['OS == "android" and >(nacl_untrusted_build)==0', { 713 ['OS == "android" and >(nacl_untrusted_build)==0', {
712 'sources!': [ 714 'sources!': [
713 'base_paths_posix.cc', 715 'base_paths_posix.cc',
714 'files/file_path_watcher_kqueue.cc', 716 'files/file_path_watcher_kqueue.cc',
715 'files/file_path_watcher_stub.cc', 717 'files/file_path_watcher_stub.cc',
716 'power_monitor/power_monitor_posix.cc', 718 'power_monitor/power_monitor_posix.cc',
717 ], 719 ],
718 'sources/': [ 720 'sources/': [
721 ['include', '^debug/proc_maps_linux\\.cc$'],
719 ['include', '^files/file_path_watcher_linux\\.cc$'], 722 ['include', '^files/file_path_watcher_linux\\.cc$'],
720 ['include', '^process_util_linux\\.cc$'], 723 ['include', '^process_util_linux\\.cc$'],
721 ['include', '^process/memory_linux\\.cc$'], 724 ['include', '^process/memory_linux\\.cc$'],
722 ['include', '^process/internal_linux\\.cc$'], 725 ['include', '^process/internal_linux\\.cc$'],
723 ['include', '^process/process_iterator\\.cc$'], 726 ['include', '^process/process_iterator\\.cc$'],
724 ['include', '^process/process_iterator_linux\\.cc$'], 727 ['include', '^process/process_iterator_linux\\.cc$'],
725 ['include', '^process/process_metrics_linux\\.cc$'], 728 ['include', '^process/process_metrics_linux\\.cc$'],
726 ['include', '^posix/unix_domain_socket_linux\\.cc$'], 729 ['include', '^posix/unix_domain_socket_linux\\.cc$'],
727 ['include', '^strings/sys_string_conversions_posix\\.cc$'], 730 ['include', '^strings/sys_string_conversions_posix\\.cc$'],
728 ['include', '^sys_info_linux\\.cc$'], 731 ['include', '^sys_info_linux\\.cc$'],
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
863 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', { 866 ['<(use_system_nspr)==1 and >(nacl_untrusted_build)==0', {
864 'sources/': [ 867 'sources/': [
865 ['exclude', '^third_party/nspr/'], 868 ['exclude', '^third_party/nspr/'],
866 ], 869 ],
867 }], 870 }],
868 ], 871 ],
869 }], 872 }],
870 ], 873 ],
871 }, 874 },
872 } 875 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698