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

Side by Side Diff: ui/ui_unittests.gyp

Issue 172933004: [Android] Port Scroller.java to C++ and use for fling animations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 10 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
« no previous file with comments | « ui/gfx/gfx.gyp ('k') | webkit/child/fling_animator_impl_android.h » ('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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 }, 215 },
216 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 216 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
217 'msvs_disabled_warnings': [ 4267, ], 217 'msvs_disabled_warnings': [ 4267, ],
218 }], 218 }],
219 ['OS != "mac" and OS != "ios"', { 219 ['OS != "mac" and OS != "ios"', {
220 'sources': [ 220 'sources': [
221 'gfx/transform_unittest.cc', 221 'gfx/transform_unittest.cc',
222 'gfx/interpolated_transform_unittest.cc', 222 'gfx/interpolated_transform_unittest.cc',
223 ], 223 ],
224 }], 224 }],
225 ['OS == "android"', {
226 'sources': [
227 'gfx/android/scroller_unittest.cc',
228 ],
229 }],
225 ['OS == "android" and gtest_target_type == "shared_library"', { 230 ['OS == "android" and gtest_target_type == "shared_library"', {
226 'dependencies': [ 231 'dependencies': [
227 '../testing/android/native_test.gyp:native_test_native_code', 232 '../testing/android/native_test.gyp:native_test_native_code',
228 ], 233 ],
229 }], 234 }],
230 ['desktop_linux == 1 or chromeos == 1 or OS == "ios"', { 235 ['desktop_linux == 1 or chromeos == 1 or OS == "ios"', {
231 'dependencies': [ 236 'dependencies': [
232 'base/strings/ui_strings.gyp:ui_unittest_strings', 237 'base/strings/ui_strings.gyp:ui_unittest_strings',
233 ], 238 ],
234 }], 239 }],
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
344 'variables': { 349 'variables': {
345 'test_suite_name': 'ui_unittests', 350 'test_suite_name': 'ui_unittests',
346 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte sts<(SHARED_LIB_SUFFIX)', 351 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte sts<(SHARED_LIB_SUFFIX)',
347 }, 352 },
348 'includes': [ '../build/apk_test.gypi' ], 353 'includes': [ '../build/apk_test.gypi' ],
349 }, 354 },
350 ], 355 ],
351 }], 356 }],
352 ], 357 ],
353 } 358 }
OLDNEW
« no previous file with comments | « ui/gfx/gfx.gyp ('k') | webkit/child/fling_animator_impl_android.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698