Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(85)

Side by Side Diff: third_party/WebKit/public/blink.gyp

Issue 1808203005: [OnionSoup] Moving VR service from content to Blink (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reworked as per comments! Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 'export_dependent_settings': [ 80 'export_dependent_settings': [
81 '../Source/web/web.gyp:blink_web_test_support', 81 '../Source/web/web.gyp:blink_web_test_support',
82 ], 82 ],
83 }, 83 },
84 { 84 {
85 'target_name': 'mojo_bindings_mojom', 85 'target_name': 'mojo_bindings_mojom',
86 'type': 'none', 86 'type': 'none',
87 'variables': { 87 'variables': {
88 'mojom_files': [ 88 'mojom_files': [
89 'platform/modules/bluetooth/web_bluetooth.mojom', 89 'platform/modules/bluetooth/web_bluetooth.mojom',
90 'platform/modules/vr/vr_service.mojom',
90 ], 91 ],
91 }, 92 },
92 'includes': [ 93 'includes': [
93 '../../../mojo/mojom_bindings_generator_explicit.gypi', 94 '../../../mojo/mojom_bindings_generator_explicit.gypi',
94 ], 95 ],
95 }, 96 },
96 { 97 {
98 # GN version: //third_party/WebKit/public:mojo_bindings
97 'target_name': 'mojo_bindings', 99 'target_name': 'mojo_bindings',
98 'type': 'static_library', 100 'type': 'static_library',
99 'dependencies': [ 101 'dependencies': [
100 'mojo_bindings_mojom', 102 'mojo_bindings_mojom',
101 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings', 103 '../../../mojo/mojo_public.gyp:mojo_cpp_bindings',
102 ], 104 ],
103 }, 105 },
104 ], 106 ],
105 } 107 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698