| 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', | |
| 43 'blink_headers.gyp:blink_headers', | 42 'blink_headers.gyp:blink_headers', |
| 44 'blink_minimal', | 43 'blink_minimal', |
| 45 ], | 44 ], |
| 46 'export_dependent_settings': [ | 45 'export_dependent_settings': [ |
| 47 '../Source/web/web.gyp:blink_web', | 46 '../Source/web/web.gyp:blink_web', |
| 48 '../Source/platform/blink_platform.gyp:blink_platform', | 47 '../Source/platform/blink_platform.gyp:blink_platform', |
| 49 'blink_minimal', | 48 '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', | |
| 54 ], | 49 ], |
| 55 }, | 50 }, |
| 56 { | 51 { |
| 57 # 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 |
| 58 # places that cannot link against the full Blink library. | 53 # places that cannot link against the full Blink library. |
| 59 # 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 |
| 60 # 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 |
| 61 # | 56 # |
| 62 # GN version: //third_party/WebKit/public:blink_minimal | 57 # GN version: //third_party/WebKit/public:blink_minimal |
| 63 'target_name': 'blink_minimal', | 58 'target_name': 'blink_minimal', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 75 'type': 'none', | 70 'type': 'none', |
| 76 'dependencies': [ | 71 'dependencies': [ |
| 77 '../Source/web/web.gyp:blink_web_test_support', | 72 '../Source/web/web.gyp:blink_web_test_support', |
| 78 ], | 73 ], |
| 79 'export_dependent_settings': [ | 74 'export_dependent_settings': [ |
| 80 '../Source/web/web.gyp:blink_web_test_support', | 75 '../Source/web/web.gyp:blink_web_test_support', |
| 81 ], | 76 ], |
| 82 }, | 77 }, |
| 83 ], | 78 ], |
| 84 } | 79 } |
| OLD | NEW |