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 19 matching lines...) Expand all Loading... |
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 # 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 'mojo_bindings', |
40 '../Source/platform/blink_platform.gyp:blink_platform', | 41 '../Source/platform/blink_platform.gyp:blink_platform', |
41 '../Source/web/web.gyp:blink_web', | 42 '../Source/web/web.gyp:blink_web', |
42 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_system_impl', | 43 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_system_impl', |
43 'blink_headers.gyp:blink_headers', | 44 'blink_headers.gyp:blink_headers', |
44 'blink_minimal', | 45 'blink_minimal', |
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', |
(...skipping 23 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 'target_name': 'mojo_bindings_mojom', |
| 86 'type': 'none', |
| 87 'variables': { |
| 88 'mojom_files': [ |
| 89 'platform/modules/bluetooth/web_bluetooth.mojom', |
| 90 ], |
| 91 }, |
| 92 'includes': [ |
| 93 '../../../mojo/mojom_bindings_generator_explicit.gypi', |
| 94 ], |
| 95 }, |
| 96 { |
| 97 'target_name': 'mojo_bindings', |
| 98 'type': 'static_library', |
| 99 'dependencies': [ |
| 100 'mojo_bindings_mojom', |
| 101 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 102 ], |
| 103 }, |
83 ], | 104 ], |
84 } | 105 } |
OLD | NEW |