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

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

Issue 2104403003: pepper: parse context creation attrib list on the plugin side (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gpu_pref_size_in_attrs
Patch Set: moar gyp fickses Created 4 years, 5 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
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': [
17 'GFX_IMPLEMENTATION',
18 ],
19 'sources': [
20 'geometry/box_f.cc',
21 'geometry/box_f.h',
22 'geometry/cubic_bezier.cc',
23 'geometry/cubic_bezier.h',
24 'geometry/dip_util.cc',
25 'geometry/dip_util.h',
26 'geometry/insets.cc',
27 'geometry/insets.h',
28 'geometry/insets_f.cc',
29 'geometry/insets_f.h',
30 'geometry/matrix3_f.cc',
31 'geometry/matrix3_f.h',
32 'geometry/point.cc',
33 'geometry/point.h',
34 'geometry/point3_f.cc',
35 'geometry/point3_f.h',
36 'geometry/point_conversions.cc',
37 'geometry/point_conversions.h',
38 'geometry/point_f.cc',
39 'geometry/point_f.h',
40 'geometry/quad_f.cc',
41 'geometry/quad_f.h',
42 'geometry/rect.cc',
43 'geometry/rect.h',
44 'geometry/rect_conversions.cc',
45 'geometry/rect_conversions.h',
46 'geometry/rect_f.cc',
47 'geometry/rect_f.h',
48 'geometry/safe_integer_conversions.h',
49 'geometry/scroll_offset.cc',
50 'geometry/scroll_offset.h',
51 'geometry/size.cc',
52 'geometry/size.h',
53 'geometry/size_conversions.cc',
54 'geometry/size_conversions.h',
55 'geometry/size_f.cc',
56 'geometry/size_f.h',
57 'geometry/vector2d.cc',
58 'geometry/vector2d.h',
59 'geometry/vector2d_conversions.cc',
60 'geometry/vector2d_conversions.h',
61 'geometry/vector2d_f.cc',
62 'geometry/vector2d_f.h',
63 'geometry/vector3d_f.cc',
64 'geometry/vector3d_f.h',
65 ],
66 'includes': [ 16 'includes': [
17 'gfx_geometry.gypi',
67 '../../build/android/increase_size_for_speed.gypi', 18 '../../build/android/increase_size_for_speed.gypi',
68 ], 19 ],
69 }, 20 },
70 { 21 {
71 # GN version: //ui/gfx/geometry/mojo 22 # GN version: //ui/gfx/geometry/mojo
72 'target_name': 'mojo_geometry_bindings_mojom', 23 'target_name': 'mojo_geometry_bindings_mojom',
73 'type': 'none', 24 'type': 'none',
74 'variables': { 25 'variables': {
75 'mojom_files': [ 26 'mojom_files': [
76 'geometry/mojo/geometry.mojom', 27 'geometry/mojo/geometry.mojom',
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
608 ], 559 ],
609 'variables': { 560 'variables': {
610 'jni_gen_package': 'ui/gfx', 561 'jni_gen_package': 'ui/gfx',
611 }, 562 },
612 'includes': [ '../../build/jni_generator.gypi' ], 563 'includes': [ '../../build/jni_generator.gypi' ],
613 }, 564 },
614 ], 565 ],
615 }], 566 }],
616 ], 567 ],
617 } 568 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698