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 { |
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', | 22 'geometry/cubic_bezier.h', |
23 'geometry/cubic_bezier.cc', | 23 'geometry/cubic_bezier.cc', |
| 24 'geometry/dip_util.h', |
| 25 'geometry/dip_util.cc', |
24 'geometry/insets.cc', | 26 'geometry/insets.cc', |
25 'geometry/insets.h', | 27 'geometry/insets.h', |
26 'geometry/insets_base.h', | 28 'geometry/insets_base.h', |
27 'geometry/insets_f.cc', | 29 'geometry/insets_f.cc', |
28 'geometry/insets_f.h', | 30 'geometry/insets_f.h', |
29 'geometry/matrix3_f.cc', | 31 'geometry/matrix3_f.cc', |
30 'geometry/matrix3_f.h', | 32 'geometry/matrix3_f.h', |
31 'geometry/point.cc', | 33 'geometry/point.cc', |
32 'geometry/point.h', | 34 'geometry/point.h', |
33 'geometry/point3_f.cc', | 35 'geometry/point3_f.cc', |
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
480 ], | 482 ], |
481 'variables': { | 483 'variables': { |
482 'jni_gen_package': 'ui/gfx', | 484 'jni_gen_package': 'ui/gfx', |
483 }, | 485 }, |
484 'includes': [ '../../build/jni_generator.gypi' ], | 486 'includes': [ '../../build/jni_generator.gypi' ], |
485 }, | 487 }, |
486 ], | 488 ], |
487 }], | 489 }], |
488 ], | 490 ], |
489 } | 491 } |
OLD | NEW |