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

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

Issue 9662022: Basic skeleton of a window/layer/view inspector. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 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
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 },
9
10 'targets': [
11 {
12 'target_name': 'oak',
13 'type': 'static_library',
14 'dependencies': [
15 '../../base/base.gyp:base',
16 '../../base/base.gyp:base_i18n',
17 '../../build/temp_gyp/googleurl.gyp:googleurl',
18 '../../skia/skia.gyp:skia',
19 '../aura/aura.gyp:aura',
20 '../gfx/compositor/compositor.gyp:compositor',
21 '../ui.gyp:ui',
22 '../ui.gyp:ui_resources',
23 '../ui.gyp:ui_resources_standard',
24 '../views/views.gyp:views',
25 ],
26 'defines': [
27 'OAK_IMPLEMENTATION',
28 ],
29 'sources': [
30 # All .cc, .h under ash, except unittests
tfarina 2012/03/10 14:42:46 nit: under ash -> under oak.
31 'oak.h',
32 'oak_aura_window_display.cc',
33 'oak_aura_window_display.h',
34 'oak_export.h',
35 'oak_layer_display.cc',
36 'oak_layer_display.h',
37 'oak_tree_model.cc',
38 'oak_tree_model.h',
39 'oak_views_view_display.cc',
40 'oak_views_view_display.cc',
41 'oak_views_widget_display.cc',
42 'oak_views_widget_display.h',
43 'oak_window.cc',
44 'oak_window.h',
45 ],
46 },
47 ],
48 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698