OLD | NEW |
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2014 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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'mojo_echo_bindings', | 8 'target_name': 'mojo_echo_bindings', |
9 'type': 'static_library', | 9 'type': 'static_library', |
10 'sources': [ | 10 'sources': [ |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 'mojo_native_viewport_bindings', | 297 'mojo_native_viewport_bindings', |
298 '<(mojo_system_for_component)', | 298 '<(mojo_system_for_component)', |
299 ], | 299 ], |
300 'defines': [ | 300 'defines': [ |
301 'MOJO_NATIVE_VIEWPORT_IMPLEMENTATION', | 301 'MOJO_NATIVE_VIEWPORT_IMPLEMENTATION', |
302 ], | 302 ], |
303 'sources': [ | 303 'sources': [ |
304 'services/native_viewport/native_viewport.h', | 304 'services/native_viewport/native_viewport.h', |
305 'services/native_viewport/native_viewport_android.cc', | 305 'services/native_viewport/native_viewport_android.cc', |
306 'services/native_viewport/native_viewport_mac.mm', | 306 'services/native_viewport/native_viewport_mac.mm', |
307 'services/native_viewport/native_viewport_ozone.cc', | |
308 'services/native_viewport/native_viewport_service.cc', | 307 'services/native_viewport/native_viewport_service.cc', |
309 'services/native_viewport/native_viewport_service.h', | 308 'services/native_viewport/native_viewport_service.h', |
310 'services/native_viewport/native_viewport_stub.cc', | 309 'services/native_viewport/native_viewport_stub.cc', |
311 'services/native_viewport/native_viewport_win.cc', | 310 'services/native_viewport/native_viewport_win.cc', |
312 'services/native_viewport/native_viewport_x11.cc', | 311 'services/native_viewport/platform_viewport.cc', |
313 ], | 312 ], |
314 'conditions': [ | 313 'conditions': [ |
315 ['OS=="win" or OS=="android" or OS=="linux" or OS=="mac"', { | 314 ['OS=="win" or OS=="android" or OS=="linux" or OS=="mac"', { |
316 'sources!': [ | 315 'sources!': [ |
317 'services/native_viewport/native_viewport_stub.cc', | 316 'services/native_viewport/native_viewport_stub.cc', |
318 ], | 317 ], |
319 }], | 318 }], |
320 ['OS=="android"', { | 319 ['OS=="android"', { |
321 'dependencies': [ | 320 'dependencies': [ |
322 'mojo_jni_headers', | 321 'mojo_jni_headers', |
323 ], | 322 ], |
324 }], | 323 }], |
| 324 ['use_x11==1 or use_ozone==1', { |
| 325 'dependencies': [ |
| 326 '../ui/platform_window/platform_window.gyp:platform_window', |
| 327 ], |
| 328 }, { |
| 329 'sources!': [ |
| 330 'services/native_viewport/platform_viewport.cc', |
| 331 ], |
| 332 }], |
325 ['use_x11==1', { | 333 ['use_x11==1', { |
326 'dependencies': [ | 334 'dependencies': [ |
327 '../ui/platform_window/x11/x11_window.gyp:x11_window', | 335 '../ui/platform_window/x11/x11_window.gyp:x11_window', |
328 ], | 336 ], |
329 }], | 337 }], |
330 ], | 338 ], |
331 }, | 339 }, |
332 { | 340 { |
333 'target_name': 'mojo_navigation_bindings', | 341 'target_name': 'mojo_navigation_bindings', |
334 'type': 'static_library', | 342 'type': 'static_library', |
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
852 'mojo_system_impl', | 860 'mojo_system_impl', |
853 ], | 861 ], |
854 'sources': [ | 862 'sources': [ |
855 'services/dbus_echo/dbus_echo_service.cc', | 863 'services/dbus_echo/dbus_echo_service.cc', |
856 ], | 864 ], |
857 }, | 865 }, |
858 ], | 866 ], |
859 }], | 867 }], |
860 ], | 868 ], |
861 } | 869 } |
OLD | NEW |