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

Side by Side Diff: base/allocator/allocator.gyp

Issue 9212025: Support use of third party time function to profiler (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 10 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/allocator/allocator_shim.h » ('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 'variables': { 6 'variables': {
7 'jemalloc_dir': '../../third_party/jemalloc/chromium', 7 'jemalloc_dir': '../../third_party/jemalloc/chromium',
8 'tcmalloc_dir': '../../third_party/tcmalloc/chromium', 8 'tcmalloc_dir': '../../third_party/tcmalloc/chromium',
9 }, 9 },
10 'targets': [ 10 'targets': [
(...skipping 398 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 '../../testing/gtest.gyp:gtest', 409 '../../testing/gtest.gyp:gtest',
410 ], 410 ],
411 'include_dirs': [ 411 'include_dirs': [
412 '.', 412 '.',
413 '<(tcmalloc_dir)/src/base', 413 '<(tcmalloc_dir)/src/base',
414 '<(tcmalloc_dir)/src', 414 '<(tcmalloc_dir)/src',
415 '../..', 415 '../..',
416 ], 416 ],
417 'sources': [ 417 'sources': [
418 'allocator_unittests.cc', 418 'allocator_unittests.cc',
419 '../profiler/alternate_timer.cc',
420 '../profiler/alternate_timer.h',
419 ], 421 ],
420 }, 422 },
421 ], 423 ],
422 'conditions': [ 424 'conditions': [
423 ['OS=="win"', { 425 ['OS=="win"', {
424 'targets': [ 426 'targets': [
425 { 427 {
426 'target_name': 'libcmt', 428 'target_name': 'libcmt',
427 'type': 'none', 429 'type': 'none',
428 'actions': [ 430 'actions': [
(...skipping 10 matching lines...) Expand all
439 '$(VCInstallDir)lib', 441 '$(VCInstallDir)lib',
440 '<(SHARED_INTERMEDIATE_DIR)/allocator', 442 '<(SHARED_INTERMEDIATE_DIR)/allocator',
441 ], 443 ],
442 }, 444 },
443 ], 445 ],
444 }, 446 },
445 ], 447 ],
446 }], 448 }],
447 ], 449 ],
448 } 450 }
OLDNEW
« no previous file with comments | « no previous file | base/allocator/allocator_shim.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698