OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 23 matching lines...) Expand all Loading... |
34 { | 34 { |
35 'target_name': 'web_dialogs_test_support', | 35 'target_name': 'web_dialogs_test_support', |
36 'type': 'static_library', | 36 'type': 'static_library', |
37 'dependencies': [ | 37 'dependencies': [ |
38 '../../base/base.gyp:base', | 38 '../../base/base.gyp:base', |
39 '../../content/content.gyp:content_browser', | 39 '../../content/content.gyp:content_browser', |
40 '../../skia/skia.gyp:skia', | 40 '../../skia/skia.gyp:skia', |
41 'web_dialogs', | 41 'web_dialogs', |
42 ], | 42 ], |
43 'sources': [ | 43 'sources': [ |
| 44 'test/test_web_contents_handler.cc', |
| 45 'test/test_web_contents_handler.h', |
44 'test/test_web_dialog_delegate.cc', | 46 'test/test_web_dialog_delegate.cc', |
45 'test/test_web_dialog_delegate.h', | 47 'test/test_web_dialog_delegate.h', |
46 'test/test_web_dialog_observer.cc', | 48 'test/test_web_dialog_observer.cc', |
47 'test/test_web_dialog_observer.h', | 49 'test/test_web_dialog_observer.h', |
48 ], | 50 ], |
49 }, | 51 }, |
50 ], | 52 ], |
51 } | 53 } |
OLD | NEW |