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

Side by Side Diff: base/base.gypi

Issue 10411047: Type profiler by intercepting 'new' and 'delete' expressions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed Created 8 years, 2 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 | « base/allocator/type_profiler_unittests.cc ('k') | base/process_util_posix.cc » ('j') | no next file with comments »
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 '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': [
11 # This part is shared between the targets defined below. 11 # This part is shared between the targets defined below.
12 ['base_target==1', { 12 ['base_target==1', {
13 'sources': [ 13 'sources': [
14 '../build/build_config.h', 14 '../build/build_config.h',
15 'third_party/dmg_fp/dmg_fp.h', 15 'third_party/dmg_fp/dmg_fp.h',
16 'third_party/dmg_fp/g_fmt.cc', 16 'third_party/dmg_fp/g_fmt.cc',
17 'third_party/dmg_fp/dtoa_wrapper.cc', 17 'third_party/dmg_fp/dtoa_wrapper.cc',
18 'third_party/icu/icu_utf.cc', 18 'third_party/icu/icu_utf.cc',
19 'third_party/icu/icu_utf.h', 19 'third_party/icu/icu_utf.h',
20 'third_party/nspr/prtime.cc', 20 'third_party/nspr/prtime.cc',
21 'third_party/nspr/prtime.h', 21 'third_party/nspr/prtime.h',
22 'third_party/nspr/prcpucfg_linux.h', 22 'third_party/nspr/prcpucfg_linux.h',
23 'third_party/xdg_mime/xdgmime.h', 23 'third_party/xdg_mime/xdgmime.h',
24 'allocator/allocator_extension.cc', 24 'allocator/allocator_extension.cc',
25 'allocator/allocator_extension.h', 25 'allocator/allocator_extension.h',
26 'allocator/type_profiler_control.cc',
27 'allocator/type_profiler_control.h',
26 'android/base_jni_registrar.cc', 28 'android/base_jni_registrar.cc',
27 'android/base_jni_registrar.h', 29 'android/base_jni_registrar.h',
28 'android/build_info.cc', 30 'android/build_info.cc',
29 'android/build_info.h', 31 'android/build_info.h',
30 'android/scoped_java_ref.cc', 32 'android/scoped_java_ref.cc',
31 'android/scoped_java_ref.h', 33 'android/scoped_java_ref.h',
32 'android/jni_android.cc', 34 'android/jni_android.cc',
33 'android/jni_android.h', 35 'android/jni_android.h',
34 'android/jni_array.cc', 36 'android/jni_array.cc',
35 'android/jni_array.h', 37 'android/jni_array.h',
(...skipping 515 matching lines...) Expand 10 before | Expand all | Expand 10 after
551 }], 553 }],
552 ['(OS != "linux" and <(os_bsd) != 1 and OS != "android") or >(nacl_unt rusted_build)==1', { 554 ['(OS != "linux" and <(os_bsd) != 1 and OS != "android") or >(nacl_unt rusted_build)==1', {
553 'sources!': [ 555 'sources!': [
554 # Not automatically excluded by the *linux.cc rules. 556 # Not automatically excluded by the *linux.cc rules.
555 'linux_util.cc', 557 'linux_util.cc',
556 ], 558 ],
557 }, 559 },
558 ], 560 ],
559 ['>(nacl_untrusted_build)==1', { 561 ['>(nacl_untrusted_build)==1', {
560 'sources!': [ 562 'sources!': [
563 'allocator/type_profiler_control.cc',
564 'allocator/type_profiler_control.h',
561 'base_paths.cc', 565 'base_paths.cc',
562 'command_line.cc', 566 'command_line.cc',
563 'cpu.cc', 567 'cpu.cc',
564 'debug/stack_trace_posix.cc', 568 'debug/stack_trace_posix.cc',
565 'file_util.cc', 569 'file_util.cc',
566 'file_util_posix.cc', 570 'file_util_posix.cc',
567 'file_util_proxy.cc', 571 'file_util_proxy.cc',
568 'files/file_path_watcher_kqueue.cc', 572 'files/file_path_watcher_kqueue.cc',
569 'native_library_posix.cc', 573 'native_library_posix.cc',
570 'path_service.cc', 574 'path_service.cc',
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
693 # Remove all unnecessary files for build_nexe.py to avoid exceeding 697 # Remove all unnecessary files for build_nexe.py to avoid exceeding
694 # command-line-string limitation when building NaCl on Windows. 698 # command-line-string limitation when building NaCl on Windows.
695 ['OS == "win" and >(nacl_untrusted_build)==1', { 699 ['OS == "win" and >(nacl_untrusted_build)==1', {
696 'sources/': [ ['exclude', '\\.h$'] ], 700 'sources/': [ ['exclude', '\\.h$'] ],
697 }], 701 }],
698 ], 702 ],
699 }], 703 }],
700 ], 704 ],
701 }, 705 },
702 } 706 }
OLDNEW
« no previous file with comments | « base/allocator/type_profiler_unittests.cc ('k') | base/process_util_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698