OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 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 # Essential components (and their tests) that are needed to build | 5 # Essential components (and their tests) that are needed to build |
6 # Chrome should be here. Other components that are useful only in | 6 # Chrome should be here. Other components that are useful only in |
7 # Mojo land like mojo_shell should be in mojo.gyp. | 7 # Mojo land like mojo_shell should be in mojo.gyp. |
8 { | 8 { |
9 'includes': [ | 9 'includes': [ |
10 'mojo_public.gypi', | 10 'mojo_public.gypi', |
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
462 'gles2/gles2_impl.cc', | 462 'gles2/gles2_impl.cc', |
463 'gles2/gles2_context.cc', | 463 'gles2/gles2_context.cc', |
464 'gles2/gles2_context.h', | 464 'gles2/gles2_context.h', |
465 ], | 465 ], |
466 'all_dependent_settings': { | 466 'all_dependent_settings': { |
467 # Ensures that dependent projects import the core functions on Windows. | 467 # Ensures that dependent projects import the core functions on Windows. |
468 'defines': ['MOJO_USE_GLES2_IMPL'], | 468 'defines': ['MOJO_USE_GLES2_IMPL'], |
469 } | 469 } |
470 }, | 470 }, |
471 { | 471 { |
472 # GN version: //mojo/public/cpp/application:chromium | 472 # GN version: //mojo/application |
473 'target_name': 'mojo_application_chromium', | 473 'target_name': 'mojo_application_chromium', |
474 'type': 'static_library', | 474 'type': 'static_library', |
475 'sources': [ | 475 'sources': [ |
476 'public/cpp/application/lib/application_runner_chromium.cc', | 476 'application/application_runner_chromium.cc', |
477 'public/cpp/application/application_runner_chromium.h', | 477 'application/application_runner_chromium.h', |
478 ], | 478 ], |
479 'dependencies': [ | 479 'dependencies': [ |
480 'mojo_application_base', | 480 'mojo_application_base', |
481 'mojo_common_lib', | 481 'mojo_common_lib', |
482 'mojo_environment_chromium', | 482 'mojo_environment_chromium', |
483 ], | 483 ], |
484 'export_dependent_settings': [ | 484 'export_dependent_settings': [ |
485 'mojo_application_base', | 485 'mojo_application_base', |
486 ], | 486 ], |
487 }, | 487 }, |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
647 'mojo_js_unittests.isolate', | 647 'mojo_js_unittests.isolate', |
648 ], | 648 ], |
649 'sources': [ | 649 'sources': [ |
650 'mojo_js_unittests.isolate', | 650 'mojo_js_unittests.isolate', |
651 ], | 651 ], |
652 }, | 652 }, |
653 ], | 653 ], |
654 }], | 654 }], |
655 ] | 655 ] |
656 } | 656 } |
OLD | NEW |