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

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: win32 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
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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 'mojo_native_viewport_bindings', 304 'mojo_native_viewport_bindings',
305 '<(mojo_system_for_component)', 305 '<(mojo_system_for_component)',
306 ], 306 ],
307 'defines': [ 307 'defines': [
308 'MOJO_NATIVE_VIEWPORT_IMPLEMENTATION', 308 'MOJO_NATIVE_VIEWPORT_IMPLEMENTATION',
309 ], 309 ],
310 'sources': [ 310 'sources': [
311 'services/native_viewport/native_viewport.h', 311 'services/native_viewport/native_viewport.h',
312 'services/native_viewport/native_viewport_android.cc', 312 'services/native_viewport/native_viewport_android.cc',
313 'services/native_viewport/native_viewport_mac.mm', 313 'services/native_viewport/native_viewport_mac.mm',
314 'services/native_viewport/native_viewport_ozone.cc',
315 'services/native_viewport/native_viewport_service.cc', 314 'services/native_viewport/native_viewport_service.cc',
316 'services/native_viewport/native_viewport_service.h', 315 'services/native_viewport/native_viewport_service.h',
317 'services/native_viewport/native_viewport_stub.cc', 316 'services/native_viewport/native_viewport_stub.cc',
318 'services/native_viewport/native_viewport_win.cc', 317 'services/native_viewport/platform_viewport.cc',
319 'services/native_viewport/native_viewport_x11.cc',
320 ], 318 ],
321 'conditions': [ 319 'conditions': [
322 ['OS=="win" or OS=="android" or OS=="linux" or OS=="mac"', { 320 ['OS=="win" or OS=="android" or OS=="linux" or OS=="mac"', {
323 'sources!': [ 321 'sources!': [
324 'services/native_viewport/native_viewport_stub.cc', 322 'services/native_viewport/native_viewport_stub.cc',
325 ], 323 ],
326 }], 324 }],
327 ['OS=="android"', { 325 ['OS=="android"', {
328 'dependencies': [ 326 'dependencies': [
329 'mojo_jni_headers', 327 'mojo_jni_headers',
330 ], 328 ],
331 }], 329 }],
330 ['use_x11==1 or use_ozone==1 or OS=="win"', {
331 'dependencies': [
332 '../ui/platform_window/platform_window.gyp:platform_window',
333 ],
334 }, {
335 'sources!': [
336 'services/native_viewport/platform_viewport.cc',
337 ],
338 }],
332 ['OS=="win"', { 339 ['OS=="win"', {
333 'dependencies': [ 340 'dependencies': [
334 '../ui/platform_window/win/win_window.gyp:win_window', 341 '../ui/platform_window/win/win_window.gyp:win_window',
335 ], 342 ],
336 }], 343 }],
337 ['use_x11==1', { 344 ['use_x11==1', {
338 'dependencies': [ 345 'dependencies': [
339 '../ui/platform_window/x11/x11_window.gyp:x11_window', 346 '../ui/platform_window/x11/x11_window.gyp:x11_window',
340 ], 347 ],
341 }], 348 }],
(...skipping 529 matching lines...) Expand 10 before | Expand all | Expand 10 after
871 'mojo_system_impl', 878 'mojo_system_impl',
872 ], 879 ],
873 'sources': [ 880 'sources': [
874 'services/dbus_echo/dbus_echo_service.cc', 881 'services/dbus_echo/dbus_echo_service.cc',
875 ], 882 ],
876 }, 883 },
877 ], 884 ],
878 }], 885 }],
879 ], 886 ],
880 } 887 }
OLDNEW
« no previous file with comments | « no previous file | mojo/services/native_viewport/native_viewport_ozone.cc » ('j') | ui/platform_window/win/win_window_factory.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698