Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 { | 1 { |
| 2 'targets': [ | 2 'targets': [ |
| 3 { | 3 { |
| 4 'target_name': 'mojo_gles2_bindings', | 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': [ |
| (...skipping 27 matching lines...) Expand all Loading... | |
| 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': 'mojo_native_viewport_service', | 47 'target_name': 'mojo_native_viewport_service', |
| 48 'type': 'static_library', | 48 'type': 'shared_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 'mojo_gles2_service', | 53 'mojo_gles2_service', |
| 54 'mojo_native_viewport_bindings', | 54 'mojo_native_viewport_bindings', |
| 55 ], | 55 'shell_bindings', |
| 56 'export_dependent_settings': [ | |
| 57 'mojo_native_viewport_bindings', | |
| 58 ], | 56 ], |
| 59 'sources': [ | 57 'sources': [ |
| 58 'services/native_viewport/android/mojo_viewport.cc', | |
| 59 'services/native_viewport/android/mojo_viewport.h', | |
|
abarth-chromium
2013/12/10 01:06:03
This looks like a bad merge. This code doesn't ex
DaveMoore
2013/12/10 03:00:45
Done.
| |
| 60 'services/native_viewport/native_viewport.h', | 60 'services/native_viewport/native_viewport.h', |
| 61 'services/native_viewport/native_viewport_android.cc', | 61 'services/native_viewport/native_viewport_android.cc', |
| 62 'services/native_viewport/native_viewport_impl.cc', | 62 'services/native_viewport/native_viewport_impl.cc', |
| 63 'services/native_viewport/native_viewport_impl.h', | |
| 64 'services/native_viewport/native_viewport_mac.mm', | 63 'services/native_viewport/native_viewport_mac.mm', |
| 65 'services/native_viewport/native_viewport_stub.cc', | 64 'services/native_viewport/native_viewport_stub.cc', |
| 66 'services/native_viewport/native_viewport_win.cc', | 65 'services/native_viewport/native_viewport_win.cc', |
| 67 'services/native_viewport/native_viewport_x11.cc', | 66 'services/native_viewport/native_viewport_x11.cc', |
| 68 ], | 67 ], |
| 69 'conditions': [ | 68 'conditions': [ |
| 70 ['OS=="win" or OS=="android" or OS=="linux" or OS=="mac"', { | 69 ['OS=="win" or OS=="android" or OS=="linux" or OS=="mac"', { |
| 71 'sources!': [ | 70 'sources!': [ |
| 72 'services/native_viewport/native_viewport_stub.cc', | 71 'services/native_viewport/native_viewport_stub.cc', |
| 73 ], | 72 ], |
| 74 }], | 73 }], |
| 75 ['OS=="android"', { | 74 ['OS=="android"', { |
| 76 'dependencies': [ | 75 'dependencies': [ |
| 77 'mojo_jni_headers', | 76 'mojo_jni_headers', |
| 78 ], | 77 ], |
| 79 }], | 78 }], |
| 80 ], | 79 ], |
| 81 }, | 80 }, |
| 82 ], | 81 ], |
| 83 } | 82 } |
| OLD | NEW |