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 24 matching lines...) Expand all Loading... |
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 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_system_impl', |
43 'blink_headers.gyp:blink_headers', | 43 'blink_headers.gyp:blink_headers', |
44 'blink_minimal', | 44 'blink_minimal', |
| 45 'blink_mojo_bindings', |
45 ], | 46 ], |
46 'export_dependent_settings': [ | 47 'export_dependent_settings': [ |
47 '../Source/web/web.gyp:blink_web', | 48 '../Source/web/web.gyp:blink_web', |
48 '../Source/platform/blink_platform.gyp:blink_platform', | 49 '../Source/platform/blink_platform.gyp:blink_platform', |
49 'blink_minimal', | 50 'blink_minimal', |
50 | 51 |
51 # public/platform/Platform.h in 'blink_headers' depends on Mojo | 52 # public/platform/Platform.h in 'blink_headers' depends on Mojo |
52 # APIs, and the dependent of this target needs to link Mojo. | 53 # APIs, and the dependent of this target needs to link Mojo. |
53 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_system_impl', | 54 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_system_impl', |
54 ], | 55 ], |
(...skipping 18 matching lines...) Expand all Loading... |
73 # GN version: //third_party/WebKit/public:test_support | 74 # GN version: //third_party/WebKit/public:test_support |
74 'target_name': 'blink_test_support', | 75 'target_name': 'blink_test_support', |
75 'type': 'none', | 76 'type': 'none', |
76 'dependencies': [ | 77 'dependencies': [ |
77 '../Source/web/web.gyp:blink_web_test_support', | 78 '../Source/web/web.gyp:blink_web_test_support', |
78 ], | 79 ], |
79 'export_dependent_settings': [ | 80 'export_dependent_settings': [ |
80 '../Source/web/web.gyp:blink_web_test_support', | 81 '../Source/web/web.gyp:blink_web_test_support', |
81 ], | 82 ], |
82 }, | 83 }, |
| 84 { |
| 85 # GN version: //third_party/WebKit/public:mojo_bindings |
| 86 'target_name': 'blink_mojo_bindings', |
| 87 'type': 'static_library', |
| 88 'includes': [ |
| 89 '../../../mojo/mojom_bindings_generator.gypi', |
| 90 ], |
| 91 'sources': [ |
| 92 'platform/modules/geolocation/geolocation.mojom', |
| 93 'platform/modules/permissions/permission.mojom', |
| 94 ], |
| 95 'dependencies': [ |
| 96 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 97 ], |
| 98 'export_dependent_settings': [ |
| 99 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 100 ], |
| 101 }, |
83 ], | 102 ], |
84 } | 103 } |
OLD | NEW |