| 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 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 'gles2/gles2_impl.cc', | 406 'gles2/gles2_impl.cc', |
| 407 'gles2/gles2_context.cc', | 407 'gles2/gles2_context.cc', |
| 408 'gles2/gles2_context.h', | 408 'gles2/gles2_context.h', |
| 409 ], | 409 ], |
| 410 'all_dependent_settings': { | 410 'all_dependent_settings': { |
| 411 # Ensures that dependent projects import the core functions on Windows. | 411 # Ensures that dependent projects import the core functions on Windows. |
| 412 'defines': ['MOJO_USE_GLES2_IMPL'], | 412 'defines': ['MOJO_USE_GLES2_IMPL'], |
| 413 } | 413 } |
| 414 }, | 414 }, |
| 415 { | 415 { |
| 416 # GN version: //mojo/public/cpp/application:chromium |
| 416 'target_name': 'mojo_application_chromium', | 417 'target_name': 'mojo_application_chromium', |
| 417 'type': 'static_library', | 418 'type': 'static_library', |
| 418 'sources': [ | 419 'sources': [ |
| 419 'public/cpp/application/lib/application_runner_chromium.cc', | 420 'public/cpp/application/lib/application_runner_chromium.cc', |
| 420 'public/cpp/application/application_runner_chromium.h', | 421 'public/cpp/application/application_runner_chromium.h', |
| 421 ], | 422 ], |
| 422 'dependencies': [ | 423 'dependencies': [ |
| 423 'mojo_application_base', | 424 'mojo_application_base', |
| 424 'mojo_environment_chromium', | 425 'mojo_environment_chromium', |
| 425 ], | 426 ], |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 585 'mojo_js_unittests.isolate', | 586 'mojo_js_unittests.isolate', |
| 586 ], | 587 ], |
| 587 'sources': [ | 588 'sources': [ |
| 588 'mojo_js_unittests.isolate', | 589 'mojo_js_unittests.isolate', |
| 589 ], | 590 ], |
| 590 }, | 591 }, |
| 591 ], | 592 ], |
| 592 }], | 593 }], |
| 593 ] | 594 ] |
| 594 } | 595 } |
| OLD | NEW |