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

Side by Side Diff: aura/aura.gyp

Issue 7739002: Revert 98850 - Proper MouseEvent targeting. Adds a Window method that locates a Window for a give... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 3 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 | 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 11 matching lines...) Expand all
22 'sources': [ 22 'sources': [
23 'desktop_host.h', 23 'desktop_host.h',
24 'desktop_host_linux.cc', 24 'desktop_host_linux.cc',
25 'desktop_host_win.cc', 25 'desktop_host_win.cc',
26 'desktop_host_win.h', 26 'desktop_host_win.h',
27 'desktop.cc', 27 'desktop.cc',
28 'desktop.h', 28 'desktop.h',
29 'event.cc', 29 'event.cc',
30 'event.h', 30 'event.h',
31 'event_win.cc', 31 'event_win.cc',
32 'root_window.cc',
33 'root_window.h',
34 'window.cc', 32 'window.cc',
35 'window.h', 33 'window.h',
36 'window_delegate.h', 34 'window_delegate.h',
37 ], 35 ],
38 }, 36 },
39 { 37 {
40 'target_name': 'aura_demo', 38 'target_name': 'aura_demo',
41 'type': 'executable', 39 'type': 'executable',
42 'dependencies': [ 40 'dependencies': [
43 '../base/base.gyp:base', 41 '../base/base.gyp:base',
44 '../base/base.gyp:base_i18n', 42 '../base/base.gyp:base_i18n',
45 '../skia/skia.gyp:skia', 43 '../skia/skia.gyp:skia',
46 '../third_party/icu/icu.gyp:icui18n', 44 '../third_party/icu/icu.gyp:icui18n',
47 '../third_party/icu/icu.gyp:icuuc', 45 '../third_party/icu/icu.gyp:icuuc',
48 '../ui/gfx/compositor/compositor.gyp:compositor', 46 '../ui/gfx/compositor/compositor.gyp:compositor',
49 '../ui/ui.gyp:gfx_resources', 47 '../ui/ui.gyp:gfx_resources',
50 '../ui/ui.gyp:ui', 48 '../ui/ui.gyp:ui',
51 '../ui/ui.gyp:ui_resources', 49 '../ui/ui.gyp:ui_resources',
52 'aura', 50 'aura',
53 ], 51 ],
54 'include_dirs': [ 52 'include_dirs': [
55 '..', 53 '..',
56 ], 54 ],
57 'sources': [ 55 'sources': [
58 'demo/demo_main.cc', 56 'demo/demo_main.cc',
59 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', 57 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
60 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc', 58 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
61 ], 59 ],
62 }, 60 },
63 {
64 'target_name': 'aura_unittests',
65 'type': 'executable',
66 'dependencies': [
67 '<(DEPTH)/base/base.gyp:test_support_base',
68 '<(DEPTH)/skia/skia.gyp:skia',
69 '<(DEPTH)/testing/gtest.gyp:gtest',
70 '<(DEPTH)/ui/ui.gyp:gfx_resources',
71 '<(DEPTH)/ui/ui.gyp:ui',
72 '<(DEPTH)/ui/ui.gyp:ui_resources',
73 'aura',
74 ],
75 'include_dirs': [
76 '..',
77 ],
78 'sources': [
79 'window_unittest.cc',
80 'run_all_unittests.cc',
81 'test_suite.cc',
82 'test_suite.h',
83 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc',
84 '<(SHARED_INTERMEDIATE_DIR)/ui/ui_resources/ui_resources.rc',
85 ],
86 },
87 ], 61 ],
88 } 62 }
OLDNEW
« no previous file with comments | « no previous file | aura/demo/demo_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698