Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: ui/gfx/gfx.gyp

Issue 270773004: ui: Move android test (scroller) into gfx_unittests target. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix path Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | ui/ui_unittests.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | ui/ui_unittests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698