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

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

Issue 8395043: Fix up compositor mocking. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Deeper down the rabbit hole. Created 9 years, 1 month 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 | « content/test/content_test_suite.cc ('k') | ui/aura/demo/demo_main.cc » ('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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 'window_observer.h', 53 'window_observer.h',
54 'window_types.h', 54 'window_types.h',
55 ], 55 ],
56 }, 56 },
57 { 57 {
58 'target_name': 'test_support_aura', 58 'target_name': 'test_support_aura',
59 'type': 'static_library', 59 'type': 'static_library',
60 'dependencies': [ 60 'dependencies': [
61 '../../skia/skia.gyp:skia', 61 '../../skia/skia.gyp:skia',
62 '../../testing/gtest.gyp:gtest', 62 '../../testing/gtest.gyp:gtest',
63 '../gfx/compositor/compositor.gyp:test_compositor',
63 '../ui.gyp:ui', 64 '../ui.gyp:ui',
64 'aura', 65 'aura',
65 ], 66 ],
66 'include_dirs': [ 67 'include_dirs': [
67 '..', 68 '..',
68 ], 69 ],
69 'sources': [ 70 'sources': [
70 'test/aura_test_base.cc', 71 'test/aura_test_base.cc',
71 'test/aura_test_base.h', 72 'test/aura_test_base.h',
72 'test/event_generator.cc', 73 'test/event_generator.cc',
73 'test/event_generator.h', 74 'test/event_generator.h',
74 'test/test_desktop_delegate.cc', 75 'test/test_desktop_delegate.cc',
75 'test/test_desktop_delegate.h', 76 'test/test_desktop_delegate.h',
76 '../gfx/compositor/test_compositor.cc',
77 '../gfx/compositor/test_compositor.h',
78 '../gfx/compositor/test_texture.cc',
79 '../gfx/compositor/test_texture.h',
80 ], 77 ],
81 }, 78 },
82 { 79 {
83 'target_name': 'aura_demo', 80 'target_name': 'aura_demo',
84 'type': 'executable', 81 'type': 'executable',
85 'dependencies': [ 82 'dependencies': [
86 '../../base/base.gyp:base', 83 '../../base/base.gyp:base',
87 '../../base/base.gyp:base_i18n', 84 '../../base/base.gyp:base_i18n',
88 '../../skia/skia.gyp:skia', 85 '../../skia/skia.gyp:skia',
89 '../../third_party/icu/icu.gyp:icui18n', 86 '../../third_party/icu/icu.gyp:icui18n',
90 '../../third_party/icu/icu.gyp:icuuc', 87 '../../third_party/icu/icu.gyp:icuuc',
91 '../gfx/compositor/compositor.gyp:compositor', 88 '../gfx/compositor/compositor.gyp:compositor',
89 '../gfx/compositor/compositor.gyp:compositor_test_support',
92 '../ui.gyp:gfx_resources', 90 '../ui.gyp:gfx_resources',
93 '../ui.gyp:ui', 91 '../ui.gyp:ui',
94 '../ui.gyp:ui_resources', 92 '../ui.gyp:ui_resources',
95 'aura', 93 'aura',
96 ], 94 ],
97 'include_dirs': [ 95 'include_dirs': [
98 '..', 96 '..',
99 ], 97 ],
100 'sources': [ 98 'sources': [
101 'demo/demo_main.cc', 99 'demo/demo_main.cc',
102 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', 100 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
103 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', 101 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
104 ], 102 ],
105 }, 103 },
106 { 104 {
107 'target_name': 'aura_unittests', 105 'target_name': 'aura_unittests',
108 'type': 'executable', 106 'type': 'executable',
109 'dependencies': [ 107 'dependencies': [
110 '../../base/base.gyp:test_support_base', 108 '../../base/base.gyp:test_support_base',
111 '../../skia/skia.gyp:skia', 109 '../../skia/skia.gyp:skia',
112 '../../testing/gtest.gyp:gtest', 110 '../../testing/gtest.gyp:gtest',
113 '../gfx/compositor/compositor.gyp:compositor',
114 '../gfx/compositor/compositor.gyp:compositor_test_support', 111 '../gfx/compositor/compositor.gyp:compositor_test_support',
112 '../gfx/compositor/compositor.gyp:test_compositor',
115 '../gfx/gl/gl.gyp:gl', 113 '../gfx/gl/gl.gyp:gl',
116 '../ui.gyp:gfx_resources', 114 '../ui.gyp:gfx_resources',
117 '../ui.gyp:ui', 115 '../ui.gyp:ui',
118 '../ui.gyp:ui_resources', 116 '../ui.gyp:ui_resources',
119 'test_support_aura', 117 'test_support_aura',
120 'aura', 118 'aura',
121 ], 119 ],
122 'include_dirs': [ 120 'include_dirs': [
123 '..', 121 '..',
124 ], 122 ],
(...skipping 18 matching lines...) Expand all
143 }], 141 }],
144 ['OS!="mac"', { 142 ['OS!="mac"', {
145 'dependencies': [ 143 'dependencies': [
146 '../../chrome/chrome.gyp:packed_resources', 144 '../../chrome/chrome.gyp:packed_resources',
147 ], 145 ],
148 }], 146 }],
149 ], 147 ],
150 }, 148 },
151 ], 149 ],
152 } 150 }
OLDNEW
« no previous file with comments | « content/test/content_test_suite.cc ('k') | ui/aura/demo/demo_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698