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 21 matching lines...) Expand all Loading... |
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 # GN version: //third_party/WebKit/public:blink |
37 'target_name': 'blink', | 37 'target_name': 'blink', |
38 'type': 'none', | 38 'type': 'none', |
39 'dependencies': [ | 39 'dependencies': [ |
40 '../Source/platform/blink_platform.gyp:blink_platform', | 40 '../Source/platform/blink_platform.gyp:blink_platform', |
41 '../Source/web/web.gyp:blink_web', | 41 '../Source/web/web.gyp:blink_web', |
| 42 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_system_impl', |
42 'blink_headers.gyp:blink_headers', | 43 'blink_headers.gyp:blink_headers', |
43 'blink_minimal', | 44 'blink_minimal', |
44 ], | 45 ], |
45 'export_dependent_settings': [ | 46 'export_dependent_settings': [ |
46 '../Source/web/web.gyp:blink_web', | 47 '../Source/web/web.gyp:blink_web', |
47 '../Source/platform/blink_platform.gyp:blink_platform', | 48 '../Source/platform/blink_platform.gyp:blink_platform', |
48 'blink_minimal', | 49 'blink_minimal', |
| 50 |
| 51 # public/platform/Platform.h in 'blink_headers' depends on Mojo |
| 52 # APIs, and the dependent of this target needs to link Mojo. |
| 53 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_system_impl', |
49 ], | 54 ], |
50 }, | 55 }, |
51 { | 56 { |
52 # This target provides a minimal set of Blink APIs such as WebString
to use in | 57 # This target provides a minimal set of Blink APIs such as WebString
to use in |
53 # places that cannot link against the full Blink library. | 58 # places that cannot link against the full Blink library. |
54 # FIXME: We really shouldn't have this at all and should instead rem
ove all uses | 59 # FIXME: We really shouldn't have this at all and should instead rem
ove all uses |
55 # of Blink's API types from places that can't link against Blink. cr
bug.com/248653 | 60 # of Blink's API types from places that can't link against Blink. cr
bug.com/248653 |
56 # | 61 # |
57 # GN version: //third_party/WebKit/public:blink_minimal | 62 # GN version: //third_party/WebKit/public:blink_minimal |
58 'target_name': 'blink_minimal', | 63 'target_name': 'blink_minimal', |
(...skipping 11 matching lines...) Expand all Loading... |
70 'type': 'none', | 75 'type': 'none', |
71 'dependencies': [ | 76 'dependencies': [ |
72 '../Source/web/web.gyp:blink_web_test_support', | 77 '../Source/web/web.gyp:blink_web_test_support', |
73 ], | 78 ], |
74 'export_dependent_settings': [ | 79 'export_dependent_settings': [ |
75 '../Source/web/web.gyp:blink_web_test_support', | 80 '../Source/web/web.gyp:blink_web_test_support', |
76 ], | 81 ], |
77 }, | 82 }, |
78 ], | 83 ], |
79 } | 84 } |
OLD | NEW |