| 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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 'environment/default_logger_impl.h', | 338 'environment/default_logger_impl.h', |
| 339 ], | 339 ], |
| 340 'include_dirs': [ | 340 'include_dirs': [ |
| 341 '..', | 341 '..', |
| 342 ], | 342 ], |
| 343 }, | 343 }, |
| 344 { | 344 { |
| 345 'target_name': 'mojo_application_chromium', | 345 'target_name': 'mojo_application_chromium', |
| 346 'type': 'static_library', | 346 'type': 'static_library', |
| 347 'sources': [ | 347 'sources': [ |
| 348 'public/cpp/application/lib/application_impl_chromium.cc', | 348 'public/cpp/application/lib/application_runner_chromium.cc', |
| 349 'public/cpp/application/application_runner_chromium.h', |
| 349 ], | 350 ], |
| 350 'dependencies': [ | 351 'dependencies': [ |
| 351 'mojo_application_base', | 352 'mojo_application_base', |
| 353 'mojo_environment_chromium', |
| 352 ], | 354 ], |
| 353 'export_dependent_settings': [ | 355 'export_dependent_settings': [ |
| 354 'mojo_application_base', | 356 'mojo_application_base', |
| 355 ], | 357 ], |
| 356 }, | 358 }, |
| 357 { | 359 { |
| 358 # GN version: //mojo/bindings/js | 360 # GN version: //mojo/bindings/js |
| 359 'target_name': 'mojo_js_bindings_lib', | 361 'target_name': 'mojo_js_bindings_lib', |
| 360 'type': 'static_library', | 362 'type': 'static_library', |
| 361 'dependencies': [ | 363 'dependencies': [ |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 512 'mojo_js_unittests.isolate', | 514 'mojo_js_unittests.isolate', |
| 513 ], | 515 ], |
| 514 'sources': [ | 516 'sources': [ |
| 515 'mojo_js_unittests.isolate', | 517 'mojo_js_unittests.isolate', |
| 516 ], | 518 ], |
| 517 }, | 519 }, |
| 518 ], | 520 ], |
| 519 }], | 521 }], |
| 520 ] | 522 ] |
| 521 } | 523 } |
| OLD | NEW |