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

Side by Side Diff: ui/ozone/ozone.gyp

Issue 403263002: platform-window: Add a PlatformWindowFactory for creating windows. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 5 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
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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 'external_ozone_platforms': [], 8 'external_ozone_platforms': [],
9 'external_ozone_platform_files': [], 9 'external_ozone_platform_files': [],
10 'external_ozone_platform_deps': [], 10 'external_ozone_platform_deps': [],
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 'type': '<(component)', 50 'type': '<(component)',
51 'dependencies': [ 51 'dependencies': [
52 '<(DEPTH)/base/base.gyp:base', 52 '<(DEPTH)/base/base.gyp:base',
53 '<(DEPTH)/ipc/ipc.gyp:ipc', 53 '<(DEPTH)/ipc/ipc.gyp:ipc',
54 '<(DEPTH)/skia/skia.gyp:skia', 54 '<(DEPTH)/skia/skia.gyp:skia',
55 '<(DEPTH)/ui/events/events.gyp:events', 55 '<(DEPTH)/ui/events/events.gyp:events',
56 '<(DEPTH)/ui/events/ozone/events_ozone.gyp:events_ozone', 56 '<(DEPTH)/ui/events/ozone/events_ozone.gyp:events_ozone',
57 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', 57 '<(DEPTH)/ui/gfx/gfx.gyp:gfx',
58 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry', 58 '<(DEPTH)/ui/gfx/gfx.gyp:gfx_geometry',
59 '<(DEPTH)/ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc', 59 '<(DEPTH)/ui/gfx/ipc/gfx_ipc.gyp:gfx_ipc',
60 '<(DEPTH)/ui/platform_window/platform_window.gyp:platform_window',
60 '<@(external_ozone_platform_deps)', 61 '<@(external_ozone_platform_deps)',
61 '<@(internal_ozone_platform_deps)', 62 '<@(internal_ozone_platform_deps)',
62 'ozone_base', 63 'ozone_base',
63 ], 64 ],
64 'defines': [ 65 'defines': [
65 'OZONE_IMPLEMENTATION', 66 'OZONE_IMPLEMENTATION',
66 ], 67 ],
67 'variables': { 68 'variables': {
68 'platform_list_cc_file': '<(INTERMEDIATE_DIR)/ui/ozone/platform_list.cc' , 69 'platform_list_cc_file': '<(INTERMEDIATE_DIR)/ui/ozone/platform_list.cc' ,
69 'platform_list_h_file': '<(SHARED_INTERMEDIATE_DIR)/ui/ozone/platform_li st.h', 70 'platform_list_h_file': '<(SHARED_INTERMEDIATE_DIR)/ui/ozone/platform_li st.h',
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 'platform/dri/gbm.gypi', 210 'platform/dri/gbm.gypi',
210 ], 211 ],
211 }], 212 }],
212 ['<(ozone_platform_test) == 1', { 213 ['<(ozone_platform_test) == 1', {
213 'includes': [ 214 'includes': [
214 'platform/test/test.gypi', 215 'platform/test/test.gypi',
215 ], 216 ],
216 }], 217 }],
217 ], 218 ],
218 } 219 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698