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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 ], | 404 ], |
405 'all_dependent_settings': { | 405 'all_dependent_settings': { |
406 # Ensures that dependent projects import the core functions on Windows. | 406 # Ensures that dependent projects import the core functions on Windows. |
407 'defines': ['MOJO_USE_GLES2_IMPL'], | 407 'defines': ['MOJO_USE_GLES2_IMPL'], |
408 } | 408 } |
409 }, | 409 }, |
410 { | 410 { |
411 'target_name': 'mojo_application_chromium', | 411 'target_name': 'mojo_application_chromium', |
412 'type': 'static_library', | 412 'type': 'static_library', |
413 'sources': [ | 413 'sources': [ |
414 'public/cpp/application/lib/application_impl_chromium.cc', | 414 'public/cpp/application/lib/application_runner_chromium.cc', |
| 415 'public/cpp/application/application_runner_chromium.h', |
415 ], | 416 ], |
416 'dependencies': [ | 417 'dependencies': [ |
417 'mojo_application_base', | 418 'mojo_application_base', |
| 419 'mojo_environment_chromium', |
418 ], | 420 ], |
419 'export_dependent_settings': [ | 421 'export_dependent_settings': [ |
420 'mojo_application_base', | 422 'mojo_application_base', |
421 ], | 423 ], |
422 }, | 424 }, |
423 { | 425 { |
424 # GN version: //mojo/bindings/js | 426 # GN version: //mojo/bindings/js |
425 'target_name': 'mojo_js_bindings_lib', | 427 'target_name': 'mojo_js_bindings_lib', |
426 'type': 'static_library', | 428 'type': 'static_library', |
427 'dependencies': [ | 429 'dependencies': [ |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
578 'mojo_js_unittests.isolate', | 580 'mojo_js_unittests.isolate', |
579 ], | 581 ], |
580 'sources': [ | 582 'sources': [ |
581 'mojo_js_unittests.isolate', | 583 'mojo_js_unittests.isolate', |
582 ], | 584 ], |
583 }, | 585 }, |
584 ], | 586 ], |
585 }], | 587 }], |
586 ] | 588 ] |
587 } | 589 } |
OLD | NEW |