| 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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 357 'application_manager/test.mojom', | 357 'application_manager/test.mojom', |
| 358 ], | 358 ], |
| 359 }, | 359 }, |
| 360 { | 360 { |
| 361 # GN version: //mojo/cc | 361 # GN version: //mojo/cc |
| 362 'target_name': 'mojo_cc_support', | 362 'target_name': 'mojo_cc_support', |
| 363 'type': 'static_library', | 363 'type': 'static_library', |
| 364 'dependencies': [ | 364 'dependencies': [ |
| 365 '../base/base.gyp:base', | 365 '../base/base.gyp:base', |
| 366 '../cc/cc.gyp:cc', | 366 '../cc/cc.gyp:cc', |
| 367 '../cc/cc.gyp:cc_surfaces', |
| 367 '../skia/skia.gyp:skia', | 368 '../skia/skia.gyp:skia', |
| 368 '../gpu/gpu.gyp:gles2_implementation', | 369 '../gpu/gpu.gyp:gles2_implementation', |
| 370 'mojo_geometry_lib', |
| 371 'mojo_surfaces_bindings', |
| 372 'mojo_surfaces_lib', |
| 369 '<(mojo_gles2_for_loadable_module)', | 373 '<(mojo_gles2_for_loadable_module)', |
| 370 ], | 374 ], |
| 375 'export_dependent_settings': [ |
| 376 'mojo_surfaces_bindings', |
| 377 ], |
| 371 'sources': [ | 378 'sources': [ |
| 372 'cc/context_provider_mojo.cc', | 379 'cc/context_provider_mojo.cc', |
| 373 'cc/context_provider_mojo.h', | 380 'cc/context_provider_mojo.h', |
| 381 'cc/output_surface_mojo.cc', |
| 382 'cc/output_surface_mojo.h', |
| 374 ], | 383 ], |
| 375 }, | 384 }, |
| 376 ], | 385 ], |
| 377 'conditions': [ | 386 'conditions': [ |
| 378 ['OS=="android"', { | 387 ['OS=="android"', { |
| 379 'targets': [ | 388 'targets': [ |
| 380 { | 389 { |
| 381 'target_name': 'mojo_native_viewport_java', | 390 'target_name': 'mojo_native_viewport_java', |
| 382 'type': 'none', | 391 'type': 'none', |
| 383 'dependencies': [ | 392 'dependencies': [ |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 523 'views/views_init_internal.h', | 532 'views/views_init_internal.h', |
| 524 ], | 533 ], |
| 525 'defines': [ | 534 'defines': [ |
| 526 'MOJO_VIEWS_IMPLEMENTATION', | 535 'MOJO_VIEWS_IMPLEMENTATION', |
| 527 ], | 536 ], |
| 528 }, | 537 }, |
| 529 ], | 538 ], |
| 530 }], | 539 }], |
| 531 ], | 540 ], |
| 532 } | 541 } |
| OLD | NEW |