Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(652)

Side by Side Diff: mojo/mojo_base.gyp

Issue 565323002: Move application:chromium bindings to mojo/application/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: mojo/application/ Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 'gles2/gles2_impl.cc', 462 'gles2/gles2_impl.cc',
463 'gles2/gles2_context.cc', 463 'gles2/gles2_context.cc',
464 'gles2/gles2_context.h', 464 'gles2/gles2_context.h',
465 ], 465 ],
466 'all_dependent_settings': { 466 'all_dependent_settings': {
467 # Ensures that dependent projects import the core functions on Windows. 467 # Ensures that dependent projects import the core functions on Windows.
468 'defines': ['MOJO_USE_GLES2_IMPL'], 468 'defines': ['MOJO_USE_GLES2_IMPL'],
469 } 469 }
470 }, 470 },
471 { 471 {
472 # GN version: //mojo/public/cpp/application:chromium 472 # GN version: //mojo/application
473 'target_name': 'mojo_application_chromium', 473 'target_name': 'mojo_application_chromium',
474 'type': 'static_library', 474 'type': 'static_library',
475 'sources': [ 475 'sources': [
476 'public/cpp/application/lib/application_runner_chromium.cc', 476 'application/application_runner_chromium.cc',
viettrungluu 2014/09/12 20:09:59 I wonder if we should rename application_runner_ch
477 'public/cpp/application/application_runner_chromium.h', 477 'application/application_runner_chromium.h',
478 ], 478 ],
479 'dependencies': [ 479 'dependencies': [
480 'mojo_application_base', 480 'mojo_application_base',
481 'mojo_common_lib', 481 'mojo_common_lib',
482 'mojo_environment_chromium', 482 'mojo_environment_chromium',
483 ], 483 ],
484 'export_dependent_settings': [ 484 'export_dependent_settings': [
485 'mojo_application_base', 485 'mojo_application_base',
486 ], 486 ],
487 }, 487 },
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
647 'mojo_js_unittests.isolate', 647 'mojo_js_unittests.isolate',
648 ], 648 ],
649 'sources': [ 649 'sources': [
650 'mojo_js_unittests.isolate', 650 'mojo_js_unittests.isolate',
651 ], 651 ],
652 }, 652 },
653 ], 653 ],
654 }], 654 }],
655 ] 655 ]
656 } 656 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698