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

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: rebase 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
« no previous file with comments | « ppapi/thunk/resource_creation_api.h ('k') | ui/gfx/gfx_geometry.gypi » ('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 {
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 530 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 '../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java', 558 '../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java',
608 '../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java ', 559 '../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java ',
609 ], 560 ],
610 'variables': { 561 'variables': {
611 'jni_gen_package': 'ui/gfx', 562 'jni_gen_package': 'ui/gfx',
612 }, 563 },
613 'includes': [ '../../build/jni_generator.gypi' ], 564 'includes': [ '../../build/jni_generator.gypi' ],
614 }, 565 },
615 ], 566 ],
616 }], 567 }],
568 ['disable_nacl!=1 and OS=="win" and target_arch=="ia32"', {
569 'targets': [
570 {
571 'target_name': 'gfx_geometry_win64',
572 'type': '<(component)',
573 'dependencies': [
574 '<(DEPTH)/base/base.gyp:base_win64',
575 ],
576 'includes': [
577 'gfx_geometry.gypi',
578 ],
579 'defines': [
580 '<@(nacl_win64_defines)',
581 ],
582 'configurations': {
583 'Common_Base': {
584 'msvs_target_platform': 'x64',
585 },
586 },
587 },
588 ],
589 }],
617 ], 590 ],
618 } 591 }
OLDNEW
« no previous file with comments | « ppapi/thunk/resource_creation_api.h ('k') | ui/gfx/gfx_geometry.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698