Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 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', | |
|
joth
2012/08/03 15:20:11
none of these chrome/ references are inspected by
Torne
2012/08/06 09:48:47
DEPS only checks header inclusion, not linkage.
| |
| 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.c c', | |
| 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 'main/webview_entry_point.cc', | |
| 44 'main/webview_main_delegate.cc', | |
| 45 'main/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 |