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

Side by Side Diff: athena/athena.gyp

Issue 301593004: Athena unittests framework (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | athena/main/DEPS » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 16 matching lines...) Expand all
27 'home/home_card_impl.cc', 27 'home/home_card_impl.cc',
28 'home/public/home_card.h', 28 'home/public/home_card.h',
29 'screen/background_controller.cc', 29 'screen/background_controller.cc',
30 'screen/background_controller.h', 30 'screen/background_controller.h',
31 'screen/public/screen_manager.h', 31 'screen/public/screen_manager.h',
32 'screen/screen_manager_impl.cc', 32 'screen/screen_manager_impl.cc',
33 'wm/public/window_manager.h', 33 'wm/public/window_manager.h',
34 'wm/window_manager_impl.cc', 34 'wm/window_manager_impl.cc',
35 ], 35 ],
36 }, 36 },
37 {
38 'target_name': 'athena_test_support',
39 'type': 'static_library',
40 'dependencies': [
41 '../base/base.gyp:test_support_base',
42 '../skia/skia.gyp:skia',
43 '../testing/gtest.gyp:gtest',
44 '../ui/accessibility/accessibility.gyp:ax_gen',
45 '../ui/aura/aura.gyp:aura_test_support',
46 '../ui/base/ui_base.gyp:ui_base_test_support',
47 '../ui/compositor/compositor.gyp:compositor_test_support',
48 '../ui/views/views.gyp:views',
49 '../ui/wm/wm.gyp:wm',
50 'athena_lib',
51 ],
52 'sources': [
53 'main/athena_launcher.cc',
54 'main/athena_launcher.h',
sadrul 2014/05/28 02:09:29 Perhaps these could move into athena_lib?
55 'main/placeholder.cc',
56 'main/placeholder.h',
57 'test/athena_test_base.cc',
58 'test/athena_test_base.h',
59 'test/athena_test_helper.cc',
60 'test/athena_test_helper.h',
61 ],
62 },
63 {
64 'target_name': 'athena_unittests',
65 'type': 'executable',
66 'dependencies': [
67 '../testing/gtest.gyp:gtest',
68 'athena_lib',
69 'athena_test_support',
70 ],
71 'sources': [
72 'test/athena_unittests.cc',
73 'wm/window_manager_unittest.cc',
74 ],
75 }
37 ], 76 ],
38 } 77 }
39 78
OLDNEW
« no previous file with comments | « no previous file | athena/main/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698