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

Side by Side Diff: base/base.gyp

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
« no previous file with comments | « no previous file | base/base.gypi » ('j') | base/debug/proc_maps_linux_unittest.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after
464 'cancelable_callback_unittest.cc', 464 'cancelable_callback_unittest.cc',
465 'command_line_unittest.cc', 465 'command_line_unittest.cc',
466 'containers/hash_tables_unittest.cc', 466 'containers/hash_tables_unittest.cc',
467 'containers/linked_list_unittest.cc', 467 'containers/linked_list_unittest.cc',
468 'containers/mru_cache_unittest.cc', 468 'containers/mru_cache_unittest.cc',
469 'containers/small_map_unittest.cc', 469 'containers/small_map_unittest.cc',
470 'containers/stack_container_unittest.cc', 470 'containers/stack_container_unittest.cc',
471 'cpu_unittest.cc', 471 'cpu_unittest.cc',
472 'debug/crash_logging_unittest.cc', 472 'debug/crash_logging_unittest.cc',
473 'debug/leak_tracker_unittest.cc', 473 'debug/leak_tracker_unittest.cc',
474 'debug/proc_maps_linux_unittest.cc',
474 'debug/stack_trace_unittest.cc', 475 'debug/stack_trace_unittest.cc',
475 'debug/trace_event_unittest.cc', 476 'debug/trace_event_unittest.cc',
476 'debug/trace_event_unittest.h', 477 'debug/trace_event_unittest.h',
477 'debug/trace_event_win_unittest.cc', 478 'debug/trace_event_win_unittest.cc',
478 'deferred_sequenced_task_runner_unittest.cc', 479 'deferred_sequenced_task_runner_unittest.cc',
479 'environment_unittest.cc', 480 'environment_unittest.cc',
480 'file_util_unittest.cc', 481 'file_util_unittest.cc',
481 'file_version_info_unittest.cc', 482 'file_version_info_unittest.cc',
482 'files/dir_reader_posix_unittest.cc', 483 'files/dir_reader_posix_unittest.cc',
483 'files/file_path_unittest.cc', 484 'files/file_path_unittest.cc',
(...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after
818 ['OS == "ios" and _toolset != "host"', { 819 ['OS == "ios" and _toolset != "host"', {
819 'sources/': [ 820 'sources/': [
820 # Pull in specific Mac files for iOS (which have been filtered out 821 # Pull in specific Mac files for iOS (which have been filtered out
821 # by file name rules). 822 # by file name rules).
822 ['include', '^mac/objc_property_releaser_unittest\\.mm$'], 823 ['include', '^mac/objc_property_releaser_unittest\\.mm$'],
823 ['include', '^mac/bind_objc_block_unittest\\.mm$'], 824 ['include', '^mac/bind_objc_block_unittest\\.mm$'],
824 ['include', '^mac/scoped_nsobject_unittest\\.mm$'], 825 ['include', '^mac/scoped_nsobject_unittest\\.mm$'],
825 ['include', '^sys_string_conversions_mac_unittest\\.mm$'], 826 ['include', '^sys_string_conversions_mac_unittest\\.mm$'],
826 ], 827 ],
827 }], 828 }],
829 ['OS == "android"', {
830 'sources/': [
831 ['include', '^debug/proc_maps_linux_unittest\\.cc$'],
832 ],
833 }],
828 ], # target_conditions 834 ], # target_conditions
829 }, 835 },
830 { 836 {
831 'target_name': 'test_support_base', 837 'target_name': 'test_support_base',
832 'type': 'static_library', 838 'type': 'static_library',
833 'dependencies': [ 839 'dependencies': [
834 'base', 840 'base',
835 'base_static', 841 'base_static',
836 'base_i18n', 842 'base_i18n',
837 '../testing/gmock.gyp:gmock', 843 '../testing/gmock.gyp:gmock',
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
1305 'base_unittests.isolate', 1311 'base_unittests.isolate',
1306 ], 1312 ],
1307 'sources': [ 1313 'sources': [
1308 'base_unittests.isolate', 1314 'base_unittests.isolate',
1309 ], 1315 ],
1310 }, 1316 },
1311 ], 1317 ],
1312 }], 1318 }],
1313 ], 1319 ],
1314 } 1320 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gypi » ('j') | base/debug/proc_maps_linux_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698