| 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'conditions': [ | 7 'conditions': [ |
| 8 ['mojo_shell_debug_url != ""', { | 8 ['mojo_shell_debug_url != ""', { |
| 9 'defines': [ | 9 'defines': [ |
| 10 'MOJO_SHELL_DEBUG=1', | 10 'MOJO_SHELL_DEBUG=1', |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 'application_manager/test.mojom', | 366 'application_manager/test.mojom', |
| 367 ], | 367 ], |
| 368 }, | 368 }, |
| 369 { | 369 { |
| 370 # GN version: //mojo/cc | 370 # GN version: //mojo/cc |
| 371 'target_name': 'mojo_cc_support', | 371 'target_name': 'mojo_cc_support', |
| 372 'type': 'static_library', | 372 'type': 'static_library', |
| 373 'dependencies': [ | 373 'dependencies': [ |
| 374 '../base/base.gyp:base', | 374 '../base/base.gyp:base', |
| 375 '../cc/cc.gyp:cc', | 375 '../cc/cc.gyp:cc', |
| 376 '../cc/cc.gyp:cc_surfaces', |
| 376 '../skia/skia.gyp:skia', | 377 '../skia/skia.gyp:skia', |
| 377 '../gpu/gpu.gyp:gles2_implementation', | 378 '../gpu/gpu.gyp:gles2_implementation', |
| 379 'mojo_geometry_lib', |
| 380 'mojo_surfaces_bindings', |
| 381 'mojo_surfaces_lib', |
| 378 '<(mojo_gles2_for_loadable_module)', | 382 '<(mojo_gles2_for_loadable_module)', |
| 379 ], | 383 ], |
| 384 'export_dependent_settings': [ |
| 385 'mojo_surfaces_bindings', |
| 386 ], |
| 380 'sources': [ | 387 'sources': [ |
| 381 'cc/context_provider_mojo.cc', | 388 'cc/context_provider_mojo.cc', |
| 382 'cc/context_provider_mojo.h', | 389 'cc/context_provider_mojo.h', |
| 390 'cc/output_surface_mojo.cc', |
| 391 'cc/output_surface_mojo.h', |
| 383 ], | 392 ], |
| 384 }, | 393 }, |
| 385 ], | 394 ], |
| 386 'conditions': [ | 395 'conditions': [ |
| 387 ['OS=="android"', { | 396 ['OS=="android"', { |
| 388 'targets': [ | 397 'targets': [ |
| 389 { | 398 { |
| 390 'target_name': 'mojo_native_viewport_java', | 399 'target_name': 'mojo_native_viewport_java', |
| 391 'type': 'none', | 400 'type': 'none', |
| 392 'dependencies': [ | 401 'dependencies': [ |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 605 }, | 614 }, |
| 606 ], | 615 ], |
| 607 'dependency': [ | 616 'dependency': [ |
| 608 'mojo_python', | 617 'mojo_python', |
| 609 ], | 618 ], |
| 610 }, | 619 }, |
| 611 ], | 620 ], |
| 612 }], | 621 }], |
| 613 ], | 622 ], |
| 614 } | 623 } |
| OLD | NEW |