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

Side by Side Diff: ash/ash.gyp

Issue 237873003: Rename wm_core_export.h to wm_export.h and the wm_core target to just wm (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 8 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 | chrome/chrome_browser_ui.gypi » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome', 8 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/chrome',
9 }, 9 },
10 'includes': [ 10 'includes': [
(...skipping 23 matching lines...) Expand all
34 '../ui/events/events.gyp:events', 34 '../ui/events/events.gyp:events',
35 '../ui/events/events.gyp:events_base', 35 '../ui/events/events.gyp:events_base',
36 '../ui/gfx/gfx.gyp:gfx', 36 '../ui/gfx/gfx.gyp:gfx',
37 '../ui/gfx/gfx.gyp:gfx_geometry', 37 '../ui/gfx/gfx.gyp:gfx_geometry',
38 '../ui/keyboard/keyboard.gyp:keyboard', 38 '../ui/keyboard/keyboard.gyp:keyboard',
39 '../ui/message_center/message_center.gyp:message_center', 39 '../ui/message_center/message_center.gyp:message_center',
40 '../ui/resources/ui_resources.gyp:ui_resources', 40 '../ui/resources/ui_resources.gyp:ui_resources',
41 '../ui/views/controls/webview/webview.gyp:webview', 41 '../ui/views/controls/webview/webview.gyp:webview',
42 '../ui/views/views.gyp:views', 42 '../ui/views/views.gyp:views',
43 '../ui/web_dialogs/web_dialogs.gyp:web_dialogs', 43 '../ui/web_dialogs/web_dialogs.gyp:web_dialogs',
44 '../ui/wm/wm.gyp:wm_core', 44 '../ui/wm/wm.gyp:wm',
45 '../url/url.gyp:url_lib', 45 '../url/url.gyp:url_lib',
46 'ash_strings.gyp:ash_strings', 46 'ash_strings.gyp:ash_strings',
47 'ash_resources', 47 'ash_resources',
48 ], 48 ],
49 'defines': [ 49 'defines': [
50 'ASH_IMPLEMENTATION', 50 'ASH_IMPLEMENTATION',
51 ], 51 ],
52 'sources': [ 52 'sources': [
53 # All .cc, .h under ash, except unittests 53 # All .cc, .h under ash, except unittests
54 'accelerators/accelerator_commands.cc', 54 'accelerators/accelerator_commands.cc',
(...skipping 824 matching lines...) Expand 10 before | Expand all | Expand 10 after
879 '../ui/keyboard/keyboard.gyp:keyboard', 879 '../ui/keyboard/keyboard.gyp:keyboard',
880 '../ui/message_center/message_center.gyp:message_center', 880 '../ui/message_center/message_center.gyp:message_center',
881 '../ui/message_center/message_center.gyp:message_center_test_support', 881 '../ui/message_center/message_center.gyp:message_center_test_support',
882 '../ui/resources/ui_resources.gyp:ui_resources', 882 '../ui/resources/ui_resources.gyp:ui_resources',
883 '../ui/ui_unittests.gyp:ui_test_support', 883 '../ui/ui_unittests.gyp:ui_test_support',
884 '../ui/views/controls/webview/webview_tests.gyp:webview_test_support', 884 '../ui/views/controls/webview/webview_tests.gyp:webview_test_support',
885 '../ui/views/examples/examples.gyp:views_examples_with_content_lib', 885 '../ui/views/examples/examples.gyp:views_examples_with_content_lib',
886 '../ui/views/views.gyp:views', 886 '../ui/views/views.gyp:views',
887 '../ui/views/views.gyp:views_test_support', 887 '../ui/views/views.gyp:views_test_support',
888 '../ui/web_dialogs/web_dialogs.gyp:web_dialogs_test_support', 888 '../ui/web_dialogs/web_dialogs.gyp:web_dialogs_test_support',
889 '../ui/wm/wm.gyp:wm_core', 889 '../ui/wm/wm.gyp:wm',
890 '../url/url.gyp:url_lib', 890 '../url/url.gyp:url_lib',
891 'ash_strings.gyp:ash_strings', 891 'ash_strings.gyp:ash_strings',
892 'ash', 892 'ash',
893 'ash_resources', 893 'ash_resources',
894 'ash_test_support', 894 'ash_test_support',
895 'ash_with_content', 895 'ash_with_content',
896 ], 896 ],
897 'sources': [ 897 'sources': [
898 'accelerators/accelerator_commands_unittest.cc', 898 'accelerators/accelerator_commands_unittest.cc',
899 'accelerators/accelerator_controller_unittest.cc', 899 'accelerators/accelerator_controller_unittest.cc',
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
1182 }], 1182 }],
1183 ['chromeos==1', { 1183 ['chromeos==1', {
1184 'dependencies': [ 1184 'dependencies': [
1185 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 1185 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
1186 ], 1186 ],
1187 }], 1187 }],
1188 ], 1188 ],
1189 }, 1189 },
1190 ], 1190 ],
1191 } 1191 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_browser_ui.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698