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

Side by Side Diff: components/framelet.gypi

Issue 1529653002: Prototype FrameletGuest/Container Class stubs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « components/components.gyp ('k') | components/framelet/browser/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2015 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 'conditions': [
6 ['OS != "ios"', {
7 'targets': [
8 {
9 'target_name': 'framelet_browser',
10 'type': 'static_library',
11 'dependencies': [
12 '../base/base.gyp:base',
13 '../content/content.gyp:content_browser',
14 '../content/content.gyp:content_common',
15 'framelet_common'
16 ],
17 'include_dirs': [
18 '..',
19 ],
20 'sources': [
21 'framelet/browser/framelet_guest.h',
22 'framelet/browser/framelet_guest.cc',
23 ],
24 },
25 {
26 'target_name': 'framelet_common',
27 'type': 'static_library',
28 'dependencies': [
29 '../base/base.gyp:base',
30 '../ipc/ipc.gyp:ipc',
31 ],
32 'include_dirs': [
33 '..',
34 ],
35 'sources': [
36 'framelet/common/framelet_guest_constants.cc',
37 'framelet/common/framelet_guest_constants.h',
38 'framelet/common/framelet_guest_messages.h',
39 ]
40 },
41 {
42 'target_name': 'framelet_renderer',
43 'type': 'static_library',
44 'dependencies': [
45 '../base/base.gyp:base',
46 '../content/content.gyp:content_common',
47 '../content/content.gyp:content_renderer',
48 '../third_party/WebKit/public/blink.gyp:blink',
49 '../v8/tools/gyp/v8.gyp:v8',
50 'framelet_common'
51 ],
52 'include_dirs': [
53 '..',
54 ],
55 'sources': [
56 'framelet/renderer/framelet_guest_container.cc',
57 'framelet/renderer/framelet_guest_container.h',
58 ],
59 },
60 ],
61 }]
62 ]
63 }
OLDNEW
« no previous file with comments | « components/components.gyp ('k') | components/framelet/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698