OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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': [ |
11 { | 11 { |
12 'target_name': 'allocator', | 12 'target_name': 'allocator', |
13 'type': 'static_library', | 13 'type': 'static_library', |
14 'msvs_guid': 'C564F145-9172-42C3-BFCB-60FDEA124321', | |
15 'include_dirs': [ | 14 'include_dirs': [ |
16 '.', | 15 '.', |
17 '<(tcmalloc_dir)/src/base', | 16 '<(tcmalloc_dir)/src/base', |
18 '<(tcmalloc_dir)/src', | 17 '<(tcmalloc_dir)/src', |
19 '../..', | 18 '../..', |
20 ], | 19 ], |
21 'direct_dependent_settings': { | 20 'direct_dependent_settings': { |
22 'configurations': { | 21 'configurations': { |
23 'Common_Base': { | 22 'Common_Base': { |
24 'msvs_settings': { | 23 'msvs_settings': { |
(...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 'dependencies': [ | 384 'dependencies': [ |
386 'allocator', | 385 'allocator', |
387 '../../testing/gtest.gyp:gtest', | 386 '../../testing/gtest.gyp:gtest', |
388 ], | 387 ], |
389 'include_dirs': [ | 388 'include_dirs': [ |
390 '.', | 389 '.', |
391 '<(tcmalloc_dir)/src/base', | 390 '<(tcmalloc_dir)/src/base', |
392 '<(tcmalloc_dir)/src', | 391 '<(tcmalloc_dir)/src', |
393 '../..', | 392 '../..', |
394 ], | 393 ], |
395 'msvs_guid': 'E99DA267-BE90-4F45-1294-6919DB2C9999', | |
396 'sources': [ | 394 'sources': [ |
397 'unittest_utils.cc', | 395 'unittest_utils.cc', |
398 'allocator_unittests.cc', | 396 'allocator_unittests.cc', |
399 ], | 397 ], |
400 }, | 398 }, |
401 ], | 399 ], |
402 'conditions': [ | 400 'conditions': [ |
403 ['OS=="win"', { | 401 ['OS=="win"', { |
404 'targets': [ | 402 'targets': [ |
405 { | 403 { |
(...skipping 19 matching lines...) Expand all Loading... |
425 ], | 423 ], |
426 }], | 424 }], |
427 ], | 425 ], |
428 } | 426 } |
429 | 427 |
430 # Local Variables: | 428 # Local Variables: |
431 # tab-width:2 | 429 # tab-width:2 |
432 # indent-tabs-mode:nil | 430 # indent-tabs-mode:nil |
433 # End: | 431 # End: |
434 # vim: set expandtab tabstop=2 shiftwidth=2: | 432 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |