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

Side by Side Diff: mojo/mojo_services.gypi

Issue 403263002: platform-window: Add a PlatformWindowFactory for creating windows. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | mojo/services/native_viewport/native_viewport_ozone.cc » ('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) 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
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 538 matching lines...) Expand 10 before | Expand all | Expand 10 after
890 'mojo_system_impl', 887 'mojo_system_impl',
891 ], 888 ],
892 'sources': [ 889 'sources': [
893 'services/dbus_echo/dbus_echo_service.cc', 890 'services/dbus_echo/dbus_echo_service.cc',
894 ], 891 ],
895 }, 892 },
896 ], 893 ],
897 }], 894 }],
898 ], 895 ],
899 } 896 }
OLDNEW
« no previous file with comments | « no previous file | mojo/services/native_viewport/native_viewport_ozone.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698