| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 284 }, | 284 }, |
| 285 { | 285 { |
| 286 'target_name': 'native_viewport', | 286 'target_name': 'native_viewport', |
| 287 'type': 'static_library', | 287 'type': 'static_library', |
| 288 'dependencies': [ | 288 'dependencies': [ |
| 289 '../base/base.gyp:base', | 289 '../base/base.gyp:base', |
| 290 '../gpu/gpu.gyp:command_buffer_service', | 290 '../gpu/gpu.gyp:command_buffer_service', |
| 291 '../gpu/gpu.gyp:gles2_implementation', | 291 '../gpu/gpu.gyp:gles2_implementation', |
| 292 '../ui/events/events.gyp:events', | 292 '../ui/events/events.gyp:events', |
| 293 '../ui/gfx/gfx.gyp:gfx', | 293 '../ui/gfx/gfx.gyp:gfx', |
| 294 '../ui/gl/gl.gyp:gl', |
| 294 ], | 295 ], |
| 295 'sources': [ | 296 'sources': [ |
| 296 'services/native_viewport/android/mojo_viewport.cc', | 297 'services/native_viewport/android/mojo_viewport.cc', |
| 297 'services/native_viewport/android/mojo_viewport.h', | 298 'services/native_viewport/android/mojo_viewport.h', |
| 298 'services/native_viewport/native_viewport.h', | 299 'services/native_viewport/native_viewport.h', |
| 299 'services/native_viewport/native_viewport_android.cc', | 300 'services/native_viewport/native_viewport_android.cc', |
| 300 'services/native_viewport/native_viewport_controller.cc', | 301 'services/native_viewport/native_viewport_controller.cc', |
| 301 'services/native_viewport/native_viewport_controller.h', | 302 'services/native_viewport/native_viewport_controller.h', |
| 303 'services/native_viewport/native_viewport_mac.mm', |
| 302 'services/native_viewport/native_viewport_stub.cc', | 304 'services/native_viewport/native_viewport_stub.cc', |
| 303 'services/native_viewport/native_viewport_win.cc', | 305 'services/native_viewport/native_viewport_win.cc', |
| 304 'services/native_viewport/native_viewport_x11.cc', | 306 'services/native_viewport/native_viewport_x11.cc', |
| 305 ], | 307 ], |
| 306 'conditions': [ | 308 'conditions': [ |
| 307 ['OS=="win" or OS=="android" or OS=="linux"', { | 309 ['OS=="win" or OS=="android" or OS=="linux" or OS=="mac"', { |
| 308 'sources!': [ | 310 'sources!': [ |
| 309 'services/native_viewport/native_viewport_stub.cc', | 311 'services/native_viewport/native_viewport_stub.cc', |
| 310 ], | 312 ], |
| 311 }], | 313 }], |
| 312 ['OS=="android"', { | 314 ['OS=="android"', { |
| 313 'dependencies': [ | 315 'dependencies': [ |
| 314 'mojo_jni_headers', | 316 'mojo_jni_headers', |
| 315 ], | 317 ], |
| 316 }], | 318 }], |
| 317 ], | 319 ], |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', | 393 'java_in_dir': '<(DEPTH)/mojo/shell/android/apk', |
| 392 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', | 394 'resource_dir': '<(DEPTH)/mojo/shell/android/apk/res', |
| 393 'native_lib_target': 'libmojo_shell', | 395 'native_lib_target': 'libmojo_shell', |
| 394 }, | 396 }, |
| 395 'includes': [ '../build/java_apk.gypi' ], | 397 'includes': [ '../build/java_apk.gypi' ], |
| 396 } | 398 } |
| 397 ], | 399 ], |
| 398 }], | 400 }], |
| 399 ], | 401 ], |
| 400 } | 402 } |
| OLD | NEW |