| 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 # GN version: //mojo/services/dbus_echo:bindings | 8 # GN version: //mojo/services/dbus_echo:bindings |
| 9 'target_name': 'mojo_echo_bindings', | 9 'target_name': 'mojo_echo_bindings', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 'mojo_native_viewport_bindings', | 306 'mojo_native_viewport_bindings', |
| 307 '<(mojo_system_for_component)', | 307 '<(mojo_system_for_component)', |
| 308 ], | 308 ], |
| 309 'defines': [ | 309 'defines': [ |
| 310 'MOJO_NATIVE_VIEWPORT_IMPLEMENTATION', | 310 'MOJO_NATIVE_VIEWPORT_IMPLEMENTATION', |
| 311 ], | 311 ], |
| 312 'sources': [ | 312 'sources': [ |
| 313 'services/native_viewport/native_viewport.h', | 313 'services/native_viewport/native_viewport.h', |
| 314 'services/native_viewport/native_viewport_android.cc', | 314 'services/native_viewport/native_viewport_android.cc', |
| 315 'services/native_viewport/native_viewport_mac.mm', | 315 'services/native_viewport/native_viewport_mac.mm', |
| 316 'services/native_viewport/native_viewport_ozone.cc', | |
| 317 'services/native_viewport/native_viewport_service.cc', | 316 'services/native_viewport/native_viewport_service.cc', |
| 318 'services/native_viewport/native_viewport_service.h', | 317 'services/native_viewport/native_viewport_service.h', |
| 319 'services/native_viewport/native_viewport_stub.cc', | 318 'services/native_viewport/native_viewport_stub.cc', |
| 320 'services/native_viewport/native_viewport_win.cc', | 319 'services/native_viewport/platform_viewport.cc', |
| 321 'services/native_viewport/native_viewport_x11.cc', | |
| 322 ], | 320 ], |
| 323 'conditions': [ | 321 'conditions': [ |
| 324 ['OS=="win" or OS=="android" or OS=="linux" or OS=="mac"', { | 322 ['OS=="win" or OS=="android" or OS=="linux" or OS=="mac"', { |
| 325 'sources!': [ | 323 'sources!': [ |
| 326 'services/native_viewport/native_viewport_stub.cc', | 324 'services/native_viewport/native_viewport_stub.cc', |
| 327 ], | 325 ], |
| 328 }], | 326 }], |
| 329 ['OS=="android"', { | 327 ['OS=="android"', { |
| 330 'dependencies': [ | 328 'dependencies': [ |
| 331 'mojo_jni_headers', | 329 'mojo_jni_headers', |
| 332 ], | 330 ], |
| 333 }], | 331 }], |
| 334 ['OS=="win"', { | 332 ['use_x11==1 or use_ozone==1 or OS=="win"', { |
| 335 'dependencies': [ | 333 'dependencies': [ |
| 336 '../ui/platform_window/win/win_window.gyp:win_window', | 334 '../ui/platform_window/platform_window.gyp:platform_window', |
| 337 ], | 335 ], |
| 338 }], | 336 }, { |
| 339 ['use_x11==1', { | 337 'sources!': [ |
| 340 'dependencies': [ | 338 'services/native_viewport/platform_viewport.cc', |
| 341 '../ui/platform_window/x11/x11_window.gyp:x11_window', | |
| 342 ], | 339 ], |
| 343 }], | 340 }], |
| 344 ], | 341 ], |
| 345 }, | 342 }, |
| 346 { | 343 { |
| 347 # GN version: //mojo/services/public/interfaces/navigation:bindings | 344 # GN version: //mojo/services/public/interfaces/navigation:bindings |
| 348 'target_name': 'mojo_navigation_bindings', | 345 'target_name': 'mojo_navigation_bindings', |
| 349 'type': 'static_library', | 346 'type': 'static_library', |
| 350 'sources': [ | 347 'sources': [ |
| 351 'services/public/interfaces/navigation/navigation.mojom', | 348 'services/public/interfaces/navigation/navigation.mojom', |
| (...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 876 'mojo_system_impl', | 873 'mojo_system_impl', |
| 877 ], | 874 ], |
| 878 'sources': [ | 875 'sources': [ |
| 879 'services/dbus_echo/dbus_echo_service.cc', | 876 'services/dbus_echo/dbus_echo_service.cc', |
| 880 ], | 877 ], |
| 881 }, | 878 }, |
| 882 ], | 879 ], |
| 883 }], | 880 }], |
| 884 ], | 881 ], |
| 885 } | 882 } |
| OLD | NEW |