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

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: reflected comments #21,22 Created 8 years, 4 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': [
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/allocated_type_profiler_control.cc',
25 'allocator/allocated_type_profiler_control.h',
24 'allocator/allocator_extension.cc', 26 'allocator/allocator_extension.cc',
25 'allocator/allocator_extension.h', 27 'allocator/allocator_extension.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',
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
541 }], 543 }],
542 ['(OS != "linux" and <(os_bsd) != 1 and OS != "android") or >(nacl_unt rusted_build)==1', { 544 ['(OS != "linux" and <(os_bsd) != 1 and OS != "android") or >(nacl_unt rusted_build)==1', {
543 'sources!': [ 545 'sources!': [
544 # Not automatically excluded by the *linux.cc rules. 546 # Not automatically excluded by the *linux.cc rules.
545 'linux_util.cc', 547 'linux_util.cc',
546 ], 548 ],
547 }, 549 },
548 ], 550 ],
549 ['>(nacl_untrusted_build)==1', { 551 ['>(nacl_untrusted_build)==1', {
550 'sources!': [ 552 'sources!': [
553 'allocator/allocated_type_profiler_control.cc',
554 'allocator/allocated_type_profiler_control.h',
551 'base_paths.cc', 555 'base_paths.cc',
552 'command_line.cc', 556 'command_line.cc',
553 'cpu.cc', 557 'cpu.cc',
554 'debug/stack_trace_posix.cc', 558 'debug/stack_trace_posix.cc',
555 'file_util.cc', 559 'file_util.cc',
556 'file_util_posix.cc', 560 'file_util_posix.cc',
557 'file_util_proxy.cc', 561 'file_util_proxy.cc',
558 'files/file_path_watcher_kqueue.cc', 562 'files/file_path_watcher_kqueue.cc',
559 'native_library_posix.cc', 563 'native_library_posix.cc',
560 'path_service.cc', 564 'path_service.cc',
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
680 # Remove all unnecessary files for build_nexe.py to avoid exceeding 684 # Remove all unnecessary files for build_nexe.py to avoid exceeding
681 # command-line-string limitation when building NaCl on Windows. 685 # command-line-string limitation when building NaCl on Windows.
682 ['OS == "win" and >(nacl_untrusted_build)==1', { 686 ['OS == "win" and >(nacl_untrusted_build)==1', {
683 'sources/': [ ['exclude', '\\.h$'] ], 687 'sources/': [ ['exclude', '\\.h$'] ],
684 }], 688 }],
685 ], 689 ],
686 }], 690 }],
687 ], 691 ],
688 }, 692 },
689 } 693 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698