OLD | NEW |
1 { | 1 { |
2 'targets': [ | 2 'targets': [ |
3 { | 3 { |
4 'target_name': 'gles2', | 4 'target_name': 'mojo_gles2_bindings', |
5 'type': 'static_library', | 5 'type': 'static_library', |
6 'sources': [ | 6 'sources': [ |
7 'services/gles2/gles2.mojom', | 7 'services/gles2/gles2.mojom', |
8 ], | 8 ], |
9 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], | 9 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], |
10 'export_dependent_settings': [ | 10 'export_dependent_settings': [ |
11 'mojo_bindings', | 11 'mojo_bindings', |
12 'mojo_system', | 12 'mojo_system', |
13 ], | 13 ], |
14 }, | 14 }, |
15 { | 15 { |
16 'target_name': 'gles2_impl', | 16 'target_name': 'mojo_gles2_service', |
17 'type': 'static_library', | 17 'type': 'static_library', |
18 'dependencies': [ | 18 'dependencies': [ |
19 '../base/base.gyp:base', | 19 '../base/base.gyp:base', |
20 '../gpu/gpu.gyp:command_buffer_service', | 20 '../gpu/gpu.gyp:command_buffer_service', |
21 '../gpu/gpu.gyp:gles2_implementation', | 21 '../gpu/gpu.gyp:gles2_implementation', |
22 '../ui/gfx/gfx.gyp:gfx', | 22 '../ui/gfx/gfx.gyp:gfx', |
23 '../ui/gl/gl.gyp:gl', | 23 '../ui/gl/gl.gyp:gl', |
24 'gles2', | 24 'mojo_gles2_bindings', |
25 ], | 25 ], |
26 'export_dependent_settings': [ | 26 'export_dependent_settings': [ |
27 'gles2', | 27 'mojo_gles2_bindings', |
28 ], | 28 ], |
29 'sources': [ | 29 'sources': [ |
30 'services/gles2/gles2_impl.cc', | 30 'services/gles2/gles2_impl.cc', |
31 'services/gles2/gles2_impl.h', | 31 'services/gles2/gles2_impl.h', |
32 ], | 32 ], |
33 }, | 33 }, |
34 { | 34 { |
35 'target_name': 'native_viewport', | 35 'target_name': 'mojo_native_viewport_bindings', |
36 'type': 'static_library', | 36 'type': 'static_library', |
37 'sources': [ | 37 'sources': [ |
38 'services/native_viewport/native_viewport.mojom', | 38 'services/native_viewport/native_viewport.mojom', |
39 ], | 39 ], |
40 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], | 40 'includes': [ 'public/bindings/mojom_bindings_generator.gypi' ], |
41 'export_dependent_settings': [ | 41 'export_dependent_settings': [ |
42 'mojo_bindings', | 42 'mojo_bindings', |
43 'mojo_system', | 43 'mojo_system', |
44 ], | 44 ], |
45 }, | 45 }, |
46 { | 46 { |
47 'target_name': 'native_viewport_impl', | 47 'target_name': 'mojo_native_viewport_service', |
48 'type': 'static_library', | 48 'type': 'static_library', |
49 'dependencies': [ | 49 'dependencies': [ |
50 '../base/base.gyp:base', | 50 '../base/base.gyp:base', |
51 '../ui/events/events.gyp:events', | 51 '../ui/events/events.gyp:events', |
52 '../ui/gfx/gfx.gyp:gfx', | 52 '../ui/gfx/gfx.gyp:gfx', |
53 'gles2_impl', | 53 'mojo_gles2_service', |
54 'native_viewport', | 54 'mojo_native_viewport_bindings', |
55 ], | 55 ], |
56 'export_dependent_settings': [ | 56 'export_dependent_settings': [ |
57 'native_viewport', | 57 'mojo_native_viewport_bindings', |
58 ], | 58 ], |
59 'sources': [ | 59 'sources': [ |
60 'services/native_viewport/android/mojo_viewport.cc', | 60 'services/native_viewport/android/mojo_viewport.cc', |
61 'services/native_viewport/android/mojo_viewport.h', | 61 'services/native_viewport/android/mojo_viewport.h', |
62 'services/native_viewport/native_viewport.h', | 62 'services/native_viewport/native_viewport.h', |
63 'services/native_viewport/native_viewport_android.cc', | 63 'services/native_viewport/native_viewport_android.cc', |
64 'services/native_viewport/native_viewport_impl.cc', | 64 'services/native_viewport/native_viewport_impl.cc', |
65 'services/native_viewport/native_viewport_impl.h', | 65 'services/native_viewport/native_viewport_impl.h', |
66 'services/native_viewport/native_viewport_mac.mm', | 66 'services/native_viewport/native_viewport_mac.mm', |
67 'services/native_viewport/native_viewport_stub.cc', | 67 'services/native_viewport/native_viewport_stub.cc', |
68 'services/native_viewport/native_viewport_win.cc', | 68 'services/native_viewport/native_viewport_win.cc', |
69 'services/native_viewport/native_viewport_x11.cc', | 69 'services/native_viewport/native_viewport_x11.cc', |
70 ], | 70 ], |
71 'conditions': [ | 71 'conditions': [ |
72 ['OS=="win" or OS=="android" or OS=="linux" or OS=="mac"', { | 72 ['OS=="win" or OS=="android" or OS=="linux" or OS=="mac"', { |
73 'sources!': [ | 73 'sources!': [ |
74 'services/native_viewport/native_viewport_stub.cc', | 74 'services/native_viewport/native_viewport_stub.cc', |
75 ], | 75 ], |
76 }], | 76 }], |
77 ['OS=="android"', { | 77 ['OS=="android"', { |
78 'dependencies': [ | 78 'dependencies': [ |
79 'mojo_jni_headers', | 79 'mojo_jni_headers', |
80 ], | 80 ], |
81 }], | 81 }], |
82 ], | 82 ], |
83 }, | 83 }, |
84 ], | 84 ], |
85 } | 85 } |
OLD | NEW |