OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | |
Jói
2012/08/02 15:20:00
2012
Torne
2012/08/03 10:31:36
Done.
| |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 { | |
5 'variables': { | |
6 'chromium_code': 1, | |
7 }, | |
8 'targets': [ | |
9 { | |
10 # TODO(torne): This is vaguely based on the downstream android target | |
11 # "chromeview_core" and once that target has been upstreamed we should | |
12 # just depend on it instead. | |
13 'target_name': 'webview_core', | |
14 'type': 'static_library', | |
15 'dependencies': [ | |
16 '../chrome/chrome.gyp:browser', | |
17 '../chrome/chrome.gyp:plugin', | |
18 '../chrome/chrome.gyp:renderer', | |
19 '../chrome/chrome.gyp:utility', | |
20 '../content/content.gyp:content', | |
21 ], | |
22 'include_dirs': [ | |
23 '..', | |
24 ], | |
25 'sources': [ | |
26 '../chrome/app/chrome_main_delegate.cc', | |
27 '../chrome/app/chrome_main_delegate.h', | |
28 '../chrome/browser/android/tab_android_test_stubs.cc', | |
29 '../chrome/browser/autofill/test_autofill_external_delegate.cc', | |
30 '../chrome/browser/autofill/test_autofill_external_delegate_android.cc', | |
31 ], | |
32 }, | |
33 { | |
34 'target_name': 'libwebview', | |
35 'type': 'shared_library', | |
36 'dependencies': [ | |
37 'webview_core', | |
38 ], | |
39 'include_dirs': [ | |
40 '..', | |
41 ], | |
42 'sources': [ | |
43 'lib/webview_entry_point.cc', | |
Jói
2012/08/02 15:20:00
should these sources be in dll/ since they depend
| |
44 'lib/webview_main_delegate.cc', | |
45 'lib/webview_main_delegate.h', | |
46 ], | |
47 }, | |
48 ], | |
49 } | |
50 | |
51 # Local Variables: | |
52 # tab-width:2 | |
53 # indent-tabs-mode:nil | |
54 # End: | |
55 # vim: set expandtab tabstop=2 shiftwidth=2: | |
OLD | NEW |