| 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 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 { | 418 { |
| 419 # GN version: //mojo/public/cpp/application:chromium | 419 # GN version: //mojo/public/cpp/application:chromium |
| 420 'target_name': 'mojo_application_chromium', | 420 'target_name': 'mojo_application_chromium', |
| 421 'type': 'static_library', | 421 'type': 'static_library', |
| 422 'sources': [ | 422 'sources': [ |
| 423 'public/cpp/application/lib/application_runner_chromium.cc', | 423 'public/cpp/application/lib/application_runner_chromium.cc', |
| 424 'public/cpp/application/application_runner_chromium.h', | 424 'public/cpp/application/application_runner_chromium.h', |
| 425 ], | 425 ], |
| 426 'dependencies': [ | 426 'dependencies': [ |
| 427 'mojo_application_base', | 427 'mojo_application_base', |
| 428 'mojo_common_lib', |
| 428 'mojo_environment_chromium', | 429 'mojo_environment_chromium', |
| 429 ], | 430 ], |
| 430 'export_dependent_settings': [ | 431 'export_dependent_settings': [ |
| 431 'mojo_application_base', | 432 'mojo_application_base', |
| 432 ], | 433 ], |
| 433 }, | 434 }, |
| 434 { | 435 { |
| 435 # GN version: //mojo/bindings/js | 436 # GN version: //mojo/bindings/js |
| 436 'target_name': 'mojo_js_bindings_lib', | 437 'target_name': 'mojo_js_bindings_lib', |
| 437 'type': 'static_library', | 438 'type': 'static_library', |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 589 'mojo_js_unittests.isolate', | 590 'mojo_js_unittests.isolate', |
| 590 ], | 591 ], |
| 591 'sources': [ | 592 'sources': [ |
| 592 'mojo_js_unittests.isolate', | 593 'mojo_js_unittests.isolate', |
| 593 ], | 594 ], |
| 594 }, | 595 }, |
| 595 ], | 596 ], |
| 596 }], | 597 }], |
| 597 ] | 598 ] |
| 598 } | 599 } |
| OLD | NEW |