OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
510 ['OS == "win"', { | 510 ['OS == "win"', { |
511 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 511 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
512 'msvs_disabled_warnings': [ 4267, ], | 512 'msvs_disabled_warnings': [ 4267, ], |
513 }], | 513 }], |
514 ['OS != "mac" and OS != "ios"', { | 514 ['OS != "mac" and OS != "ios"', { |
515 'sources': [ | 515 'sources': [ |
516 'transform_unittest.cc', | 516 'transform_unittest.cc', |
517 'interpolated_transform_unittest.cc', | 517 'interpolated_transform_unittest.cc', |
518 ], | 518 ], |
519 }], | 519 }], |
| 520 ['OS == "android"', { |
| 521 'sources': [ |
| 522 'android/scroller_unittest.cc', |
| 523 ], |
| 524 }], |
| 525 ['OS == "android" and gtest_target_type == "shared_library"', { |
| 526 'dependencies': [ |
| 527 '../../testing/android/native_test.gyp:native_test_native_code', |
| 528 ], |
| 529 }], |
520 ], | 530 ], |
521 } | 531 } |
522 ], | 532 ], |
523 'conditions': [ | 533 'conditions': [ |
524 ['OS=="android"' , { | 534 ['OS=="android"' , { |
525 'targets': [ | 535 'targets': [ |
526 { | 536 { |
527 'target_name': 'gfx_jni_headers', | 537 'target_name': 'gfx_jni_headers', |
528 'type': 'none', | 538 'type': 'none', |
529 'sources': [ | 539 'sources': [ |
(...skipping 22 matching lines...) Expand all Loading... |
552 ], | 562 ], |
553 'variables': { | 563 'variables': { |
554 'test_suite_name': 'gfx_unittests', | 564 'test_suite_name': 'gfx_unittests', |
555 }, | 565 }, |
556 'includes': [ '../../build/apk_test.gypi' ], | 566 'includes': [ '../../build/apk_test.gypi' ], |
557 }, | 567 }, |
558 ], | 568 ], |
559 }], | 569 }], |
560 ], | 570 ], |
561 } | 571 } |
OLD | NEW |