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

Side by Side Diff: components/webmessaging/webmessaging.gyp

Issue 2004643002: Implement BroadcastChannel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 'mojom_files': [
9 'broadcast_channel.mojom',
10 ],
11 },
12 'targets': [
13 {
14 # GN version: //components/webmessaging/webmessaging
15 'target_name': 'webmessaging',
16 'type': 'static_library',
17 'dependencies': [
18 'webmessaging_mojo_bindings',
19 '../../base/base.gyp:base',
20 '../../url/url.gyp:url_lib',
21 ],
22 'sources': [
23 'broadcast_channel_service.cc',
24 'broadcast_channel_service.h',
25 ],
26 },
27 {
28 'target_name': 'webmessaging_mojo_bindings',
29 'type': 'static_library',
30 'sources': [ '<@(mojom_files)' ],
31 'includes': [
32 '../../mojo/mojom_bindings_generator.gypi',
33 ],
34 },
35 {
36 'target_name': 'webmessaging_mojo_bindings_for_blink',
37 'type': 'static_library',
38 'sources': [ '<@(mojom_files)' ],
39 'variables': {
40 'for_blink': 'true',
41 },
42 'includes': [
43 '../../mojo/mojom_bindings_generator.gypi',
44 ],
45 },
46 ],
47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698