OLD | NEW |
1 # | 1 # |
2 # Copyright (C) 2013 Google Inc. All rights reserved. | 2 # Copyright (C) 2013 Google Inc. All rights reserved. |
3 # | 3 # |
4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
6 # met: | 6 # met: |
7 # | 7 # |
8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
(...skipping 15 matching lines...) Expand all Loading... |
26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
29 # | 29 # |
30 { | 30 { |
31 'includes': [ | 31 'includes': [ |
32 '../Source/build/features.gypi', | 32 '../Source/build/features.gypi', |
33 ], | 33 ], |
34 'targets': [ | 34 'targets': [ |
35 { | 35 { |
| 36 # GN version: //third_party/WebKit/public:blink |
36 'target_name': 'blink', | 37 'target_name': 'blink', |
37 'type': 'none', | 38 'type': 'none', |
38 'dependencies': [ | 39 'dependencies': [ |
39 '../Source/platform/blink_platform.gyp:blink_platform', | 40 '../Source/platform/blink_platform.gyp:blink_platform', |
40 '../Source/web/web.gyp:blink_web', | 41 '../Source/web/web.gyp:blink_web', |
41 'blink_headers.gyp:blink_headers', | 42 'blink_headers.gyp:blink_headers', |
42 'blink_minimal', | 43 'blink_minimal', |
43 ], | 44 ], |
44 'export_dependent_settings': [ | 45 'export_dependent_settings': [ |
45 '../Source/web/web.gyp:blink_web', | 46 '../Source/web/web.gyp:blink_web', |
46 '../Source/platform/blink_platform.gyp:blink_platform', | 47 '../Source/platform/blink_platform.gyp:blink_platform', |
47 'blink_minimal', | 48 'blink_minimal', |
48 ], | 49 ], |
49 }, | 50 }, |
50 { | 51 { |
51 # This target provides a minimal set of Blink APIs such as WebString
to use in | 52 # This target provides a minimal set of Blink APIs such as WebString
to use in |
52 # places that cannot link against the full Blink library. | 53 # places that cannot link against the full Blink library. |
53 # FIXME: We really shouldn't have this at all and should instead rem
ove all uses | 54 # FIXME: We really shouldn't have this at all and should instead rem
ove all uses |
54 # of Blink's API types from places that can't link against Blink. cr
bug.com/248653 | 55 # of Blink's API types from places that can't link against Blink. cr
bug.com/248653 |
| 56 # |
| 57 # GN version: //third_party/WebKit/public:blink_minimal |
55 'target_name': 'blink_minimal', | 58 'target_name': 'blink_minimal', |
56 'type': 'none', | 59 'type': 'none', |
57 'dependencies': [ | 60 'dependencies': [ |
58 '../Source/platform/blink_platform.gyp:blink_common', | 61 '../Source/platform/blink_platform.gyp:blink_common', |
59 ], | 62 ], |
60 'export_dependent_settings': [ | 63 'export_dependent_settings': [ |
61 '../Source/platform/blink_platform.gyp:blink_common', | 64 '../Source/platform/blink_platform.gyp:blink_common', |
62 ], | 65 ], |
63 }, | 66 }, |
64 { | 67 { |
| 68 # GN version: //third_party/WebKit/public:test_support |
65 'target_name': 'blink_test_support', | 69 'target_name': 'blink_test_support', |
66 'type': 'none', | 70 'type': 'none', |
67 'dependencies': [ | 71 'dependencies': [ |
68 '../Source/web/web.gyp:blink_web_test_support', | 72 '../Source/web/web.gyp:blink_web_test_support', |
69 ], | 73 ], |
70 'export_dependent_settings': [ | 74 'export_dependent_settings': [ |
71 '../Source/web/web.gyp:blink_web_test_support', | 75 '../Source/web/web.gyp:blink_web_test_support', |
72 ], | 76 ], |
73 }, | 77 }, |
74 ], | 78 ], |
75 } | 79 } |
OLD | NEW |