| 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 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 'environment/default_async_waiter_impl.cc', | 335 'environment/default_async_waiter_impl.cc', |
| 336 'environment/default_async_waiter_impl.h', | 336 'environment/default_async_waiter_impl.h', |
| 337 'environment/default_logger_impl.cc', | 337 'environment/default_logger_impl.cc', |
| 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', | |
| 346 'type': 'static_library', | |
| 347 'sources': [ | |
| 348 'public/cpp/application/lib/application_impl_chromium.cc', | |
| 349 ], | |
| 350 'dependencies': [ | |
| 351 'mojo_application_base', | |
| 352 ], | |
| 353 'export_dependent_settings': [ | |
| 354 'mojo_application_base', | |
| 355 ], | |
| 356 }, | |
| 357 { | |
| 358 # GN version: //mojo/bindings/js | 345 # GN version: //mojo/bindings/js |
| 359 'target_name': 'mojo_js_bindings_lib', | 346 'target_name': 'mojo_js_bindings_lib', |
| 360 'type': 'static_library', | 347 'type': 'static_library', |
| 361 'dependencies': [ | 348 'dependencies': [ |
| 362 '../base/base.gyp:base', | 349 '../base/base.gyp:base', |
| 363 '../gin/gin.gyp:gin', | 350 '../gin/gin.gyp:gin', |
| 364 '../v8/tools/gyp/v8.gyp:v8', | 351 '../v8/tools/gyp/v8.gyp:v8', |
| 365 'mojo_common_lib', | 352 'mojo_common_lib', |
| 366 ], | 353 ], |
| 367 'export_dependent_settings': [ | 354 'export_dependent_settings': [ |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 512 'mojo_js_unittests.isolate', | 499 'mojo_js_unittests.isolate', |
| 513 ], | 500 ], |
| 514 'sources': [ | 501 'sources': [ |
| 515 'mojo_js_unittests.isolate', | 502 'mojo_js_unittests.isolate', |
| 516 ], | 503 ], |
| 517 }, | 504 }, |
| 518 ], | 505 ], |
| 519 }], | 506 }], |
| 520 ] | 507 ] |
| 521 } | 508 } |
| OLD | NEW |