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

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

Issue 143413020: Use a bezier timing function for the overview mode animation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | Annotate | Revision Log
« no previous file with comments | « ui/gfx/geometry/cubic_bezier_unittest.cc ('k') | no next file » | 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 {
11 'target_name': 'gfx_geometry', 11 'target_name': 'gfx_geometry',
12 'type': '<(component)', 12 'type': '<(component)',
13 'dependencies': [ 13 'dependencies': [
14 '<(DEPTH)/base/base.gyp:base', 14 '<(DEPTH)/base/base.gyp:base',
15 ], 15 ],
16 'defines': [ 16 'defines': [
17 'GFX_IMPLEMENTATION', 17 'GFX_IMPLEMENTATION',
18 ], 18 ],
19 'sources': [ 19 'sources': [
20 'geometry/box_f.cc', 20 'geometry/box_f.cc',
21 'geometry/box_f.h', 21 'geometry/box_f.h',
22 'geometry/cubic_bezier.h',
23 'geometry/cubic_bezier.cc',
22 'geometry/insets.cc', 24 'geometry/insets.cc',
23 'geometry/insets.h', 25 'geometry/insets.h',
24 'geometry/insets_base.h', 26 'geometry/insets_base.h',
25 'geometry/insets_f.cc', 27 'geometry/insets_f.cc',
26 'geometry/insets_f.h', 28 'geometry/insets_f.h',
27 'geometry/matrix3_f.cc', 29 'geometry/matrix3_f.cc',
28 'geometry/matrix3_f.h', 30 'geometry/matrix3_f.h',
29 'geometry/point.cc', 31 'geometry/point.cc',
30 'geometry/point.h', 32 'geometry/point.h',
31 'geometry/point3_f.cc', 33 'geometry/point3_f.cc',
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 'target_name': 'gfx_geometry_unittests', 72 'target_name': 'gfx_geometry_unittests',
71 'type': 'static_library', 73 'type': 'static_library',
72 'dependencies': [ 74 'dependencies': [
73 '<(DEPTH)/base/base.gyp:base', 75 '<(DEPTH)/base/base.gyp:base',
74 '<(DEPTH)/base/base.gyp:test_support_base', 76 '<(DEPTH)/base/base.gyp:test_support_base',
75 '<(DEPTH)/testing/gtest.gyp:gtest', 77 '<(DEPTH)/testing/gtest.gyp:gtest',
76 'gfx_geometry', 78 'gfx_geometry',
77 ], 79 ],
78 'sources': [ 80 'sources': [
79 'geometry/box_unittest.cc', 81 'geometry/box_unittest.cc',
82 'geometry/cubic_bezier_unittest.cc',
80 'geometry/insets_unittest.cc', 83 'geometry/insets_unittest.cc',
81 'geometry/matrix3_unittest.cc', 84 'geometry/matrix3_unittest.cc',
82 'geometry/point_unittest.cc', 85 'geometry/point_unittest.cc',
83 'geometry/point3_unittest.cc', 86 'geometry/point3_unittest.cc',
84 'geometry/quad_unittest.cc', 87 'geometry/quad_unittest.cc',
85 'geometry/rect_unittest.cc', 88 'geometry/rect_unittest.cc',
86 'geometry/safe_integer_conversions_unittest.cc', 89 'geometry/safe_integer_conversions_unittest.cc',
87 'geometry/size_unittest.cc', 90 'geometry/size_unittest.cc',
88 'geometry/vector2d_unittest.cc', 91 'geometry/vector2d_unittest.cc',
89 'geometry/vector3d_unittest.cc', 92 'geometry/vector3d_unittest.cc',
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 'variables': { 515 'variables': {
513 'jni_gen_package': 'ui/gfx', 516 'jni_gen_package': 'ui/gfx',
514 'jni_generator_ptr_type': 'long' 517 'jni_generator_ptr_type': 'long'
515 }, 518 },
516 'includes': [ '../../build/jni_generator.gypi' ], 519 'includes': [ '../../build/jni_generator.gypi' ],
517 }, 520 },
518 ], 521 ],
519 }], 522 }],
520 ], 523 ],
521 } 524 }
OLDNEW
« no previous file with comments | « ui/gfx/geometry/cubic_bezier_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698