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 'nacl_win64_target': 0, | 7 'nacl_win64_target': 0, |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 'gpu_common.gypi', | 10 'gpu_common.gypi', |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 'config/gpu_test_expectations_parser_unittest.cc', | 257 'config/gpu_test_expectations_parser_unittest.cc', |
258 'config/gpu_util_unittest.cc', | 258 'config/gpu_util_unittest.cc', |
259 ], | 259 ], |
260 'conditions': [ | 260 'conditions': [ |
261 ['OS == "android" and gtest_target_type == "shared_library"', { | 261 ['OS == "android" and gtest_target_type == "shared_library"', { |
262 'dependencies': [ | 262 'dependencies': [ |
263 '../testing/android/native_test.gyp:native_test_native_code', | 263 '../testing/android/native_test.gyp:native_test_native_code', |
264 ], | 264 ], |
265 }], | 265 }], |
266 # See http://crbug.com/162998#c4 for why this is needed. | 266 # See http://crbug.com/162998#c4 for why this is needed. |
267 ['OS=="linux" and linux_use_tcmalloc==1', { | 267 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 |
| 268 ['OS=="linux" and ((use_allocator!="none" and use_allocator!="see_use_tc
malloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1))', { |
268 'dependencies': [ | 269 'dependencies': [ |
269 '../base/allocator/allocator.gyp:allocator', | 270 '../base/allocator/allocator.gyp:allocator', |
270 ], | 271 ], |
271 }], | 272 }], |
272 ], | 273 ], |
273 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 274 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
274 'msvs_disabled_warnings': [ 4267, ], | 275 'msvs_disabled_warnings': [ 4267, ], |
275 }, | 276 }, |
276 { | 277 { |
277 'target_name': 'gl_tests', | 278 'target_name': 'gl_tests', |
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
580 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)gl_tests<
(SHARED_LIB_SUFFIX)', | 581 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)gl_tests<
(SHARED_LIB_SUFFIX)', |
581 }, | 582 }, |
582 'includes': [ | 583 'includes': [ |
583 '../build/apk_test.gypi', | 584 '../build/apk_test.gypi', |
584 ], | 585 ], |
585 }, | 586 }, |
586 ], | 587 ], |
587 }], | 588 }], |
588 ], | 589 ], |
589 } | 590 } |
OLD | NEW |