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

Side by Side Diff: gpu/demos/demos.gyp

Issue 6718027: Refactor: Move app/surface to ui/gfx/surface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Lint. Created 9 years, 9 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 (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'includes': [ 6 'includes': [
7 '../../ppapi/ppapi.gypi', 7 '../../ppapi/ppapi.gypi',
8 ], 8 ],
9 'variables': { 9 'variables': {
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 23 matching lines...) Expand all
34 'framework/demo_factory.h', 34 'framework/demo_factory.h',
35 ], 35 ],
36 }, 36 },
37 { 37 {
38 'target_name': 'gpu_demo_framework_exe', 38 'target_name': 'gpu_demo_framework_exe',
39 'type': 'static_library', 39 'type': 'static_library',
40 'dependencies': [ 40 'dependencies': [
41 'gpu_demo_framework', 41 'gpu_demo_framework',
42 '../gpu.gyp:command_buffer_client', 42 '../gpu.gyp:command_buffer_client',
43 '../gpu.gyp:command_buffer_service', 43 '../gpu.gyp:command_buffer_service',
44 '../../ui/gfx/surface/surface.gyp:surface',
Ben Goodger (Google) 2011/03/23 18:41:10 How did this work before without an app/ dependenc
jonathan.backer 2011/03/24 13:02:07 Good catch! I think that it pulled it in through
44 ], 45 ],
45 'sources': [ 46 'sources': [
46 'framework/main_exe.cc', 47 'framework/main_exe.cc',
47 'framework/window.cc', 48 'framework/window.cc',
48 'framework/window_linux.cc', 49 'framework/window_linux.cc',
49 'framework/window_mac.mm', 50 'framework/window_mac.mm',
50 'framework/window_win.cc', 51 'framework/window_win.cc',
51 'framework/window.h', 52 'framework/window.h',
52 ], 53 ],
53 'conditions': [ 54 'conditions': [
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 ], 300 ],
300 }], 301 }],
301 ], 302 ],
302 } 303 }
303 304
304 # Local Variables: 305 # Local Variables:
305 # tab-width:2 306 # tab-width:2
306 # indent-tabs-mode:nil 307 # indent-tabs-mode:nil
307 # End: 308 # End:
308 # vim: set expandtab tabstop=2 shiftwidth=2: 309 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698