| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |