| OLD | NEW |
| 1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 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 # This turns on e.g. the filename-based detection of which | 7 # This turns on e.g. the filename-based detection of which |
| 8 # platforms to include source files on (e.g. files ending in | 8 # platforms to include source files on (e.g. files ending in |
| 9 # _mac.h or _mac.cc are only compiled on MacOSX). | 9 # _mac.h or _mac.cc are only compiled on MacOSX). |
| 10 'chromium_code': 1, | 10 'chromium_code': 1, |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 510 ['OS == "android" and gtest_target_type == "shared_library"', { | 510 ['OS == "android" and gtest_target_type == "shared_library"', { |
| 511 'targets': [ | 511 'targets': [ |
| 512 { | 512 { |
| 513 'target_name': 'components_unittests_apk', | 513 'target_name': 'components_unittests_apk', |
| 514 'type': 'none', | 514 'type': 'none', |
| 515 'dependencies': [ | 515 'dependencies': [ |
| 516 'components_unittests', | 516 'components_unittests', |
| 517 ], | 517 ], |
| 518 'variables': { | 518 'variables': { |
| 519 'test_suite_name': 'components_unittests', | 519 'test_suite_name': 'components_unittests', |
| 520 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)compo
nents_unittests<(SHARED_LIB_SUFFIX)', | |
| 521 }, | 520 }, |
| 522 'includes': [ '../build/apk_test.gypi' ], | 521 'includes': [ '../build/apk_test.gypi' ], |
| 523 }, | 522 }, |
| 524 ], | 523 ], |
| 525 }], | 524 }], |
| 526 ], | 525 ], |
| 527 }], | 526 }], |
| 528 ['OS!="ios"', { | 527 ['OS!="ios"', { |
| 529 'targets': [ | 528 'targets': [ |
| 530 { | 529 { |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 613 'dependencies': [ | 612 'dependencies': [ |
| 614 '../base/allocator/allocator.gyp:allocator', | 613 '../base/allocator/allocator.gyp:allocator', |
| 615 ], | 614 ], |
| 616 }], | 615 }], |
| 617 ], | 616 ], |
| 618 }, | 617 }, |
| 619 ], | 618 ], |
| 620 }], | 619 }], |
| 621 ], | 620 ], |
| 622 } | 621 } |
| OLD | NEW |