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

Side by Side Diff: mojo/mojo.gyp

Issue 354513002: A couple of changes that make views work from multiple threads (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: usage Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | mojo/views/mojo_views_export.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 { 5 {
6 'target_defaults': { 6 'target_defaults': {
7 'conditions': [ 7 'conditions': [
8 ['mojo_shell_debug_url != ""', { 8 ['mojo_shell_debug_url != ""', {
9 'defines': [ 9 'defines': [
10 'MOJO_SHELL_DEBUG=1', 10 'MOJO_SHELL_DEBUG=1',
(...skipping 932 matching lines...) Expand 10 before | Expand all | Expand 10 after
943 '../base/base.gyp:base_i18n', 943 '../base/base.gyp:base_i18n',
944 '../skia/skia.gyp:skia', 944 '../skia/skia.gyp:skia',
945 '../skia/skia.gyp:skia', 945 '../skia/skia.gyp:skia',
946 '../third_party/icu/icu.gyp:icui18n', 946 '../third_party/icu/icu.gyp:icui18n',
947 '../third_party/icu/icu.gyp:icuuc', 947 '../third_party/icu/icu.gyp:icuuc',
948 '../ui/aura/aura.gyp:aura', 948 '../ui/aura/aura.gyp:aura',
949 '../ui/base/ui_base.gyp:ui_base', 949 '../ui/base/ui_base.gyp:ui_base',
950 '../ui/views/views.gyp:views', 950 '../ui/views/views.gyp:views',
951 '../ui/wm/wm.gyp:wm', 951 '../ui/wm/wm.gyp:wm',
952 'mojo_aura_support', 952 'mojo_aura_support',
953 'mojo_views_support_internal',
953 ], 954 ],
954 'sources': [ 955 'sources': [
955 'views/native_widget_view_manager.cc', 956 'views/native_widget_view_manager.cc',
956 'views/native_widget_view_manager.h', 957 'views/native_widget_view_manager.h',
957 'views/views_init.cc', 958 'views/views_init.cc',
958 'views/views_init.h', 959 'views/views_init.h',
959 ], 960 ],
960 }, 961 },
962 {
963 'target_name': 'mojo_views_support_internal',
964 'type': '<(component)',
965 'dependencies': [
966 '../base/base.gyp:base',
967 '../base/base.gyp:base_i18n',
968 '../base/base.gyp:base_static',
969 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
970 '../skia/skia.gyp:skia',
971 '../skia/skia.gyp:skia',
972 '../third_party/icu/icu.gyp:icui18n',
973 '../third_party/icu/icu.gyp:icuuc',
974 '../ui/base/ui_base.gyp:ui_base',
975 '../ui/gfx/gfx.gyp:gfx',
976 ],
977 'sources': [
978 'views/mojo_views_export.h',
979 'views/views_init_internal.cc',
980 'views/views_init_internal.h',
981 ],
982 'defines': [
983 'MOJO_VIEWS_IMPLEMENTATION',
984 ],
985 },
961 ], 986 ],
962 }], 987 }],
963 ], 988 ],
964 } 989 }
OLDNEW
« no previous file with comments | « no previous file | mojo/views/mojo_views_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698