Explicitly add python-numpy dependency to install-build-deps.
[chromium-blink-merge.git] / ios / web / ios_web.gyp
blob4e8257e57241ae4582e7ef31473cfb76ac81c6d2
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
3 # found in the LICENSE file.
6   'variables': {
7     'chromium_code': 1,
8    },
9   'targets': [
10     {
11       'target_name': 'ios_web',
12       'type': 'static_library',
13       'include_dirs': [
14         '../..',
15       ],
16       'dependencies': [
17         '../../base/base.gyp:base',
18         '../../net/net.gyp:net',
19         '../../ui/base/ui_base.gyp:ui_base',
20         '../../ui/gfx/gfx.gyp:gfx',
21       ],
22       'sources': [
23         'browser_state.cc',
24         'navigation/navigation_item_impl.h',
25         'navigation/navigation_item_impl.mm',
26         'public/browser_state.h',
27         'public/favicon_status.cc',
28         'public/favicon_status.h',
29         'public/navigation_item.h',
30         'public/referrer.h',
31         'public/security_style.h',
32         'public/ssl_status.cc',
33         'public/ssl_status.h',
34         'public/user_agent.h',
35         'public/user_agent.mm',
36       ],
37     },
38     {
39       'target_name': 'test_support_ios_web',
40       'type': 'static_library',
41       'dependencies': [
42         'ios_web',
43       ],
44       'include_dirs': [
45         '../..',
46       ],
47       'sources': [
48         'public/test/test_browser_state.cc',
49         'public/test/test_browser_state.h',
50       ],
51     },
52   ],