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

Side by Side Diff: components/framelet.gypi

Issue 1560553002: Framelet Prototype 2016 Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased + Applied Brett's Windows + Fixed security issue Created 4 years, 11 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
« no previous file with comments | « components/components_google_chrome_strings.grd ('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 '../components/components.gyp:guest_view_browser',
14 '../components/components_strings.gyp:components_strings',
15 '../content/content.gyp:content_browser',
16 '../content/content.gyp:content_common',
17 'framelet_common'
18 ],
19 'include_dirs': [
20 '..',
21 ],
22 'sources': [
23 'framelet/browser/framelet_guest.cc',
24 'framelet/browser/framelet_guest.h',
25 'framelet/browser/framelet_memory_tracker.cc',
26 'framelet/browser/framelet_memory_tracker.h',
27 'framelet/browser/framelet_memory_tracker_client.h',
28 'framelet/browser/resource_usage_range.h',
29 'framelet/browser/resource_usage_reporter.h',
30 'framelet/browser/resource_usage_reporter_client.h',
31 ],
32 },
33 {
34 'target_name': 'framelet_common',
35 'type': 'static_library',
36 'dependencies': [
37 '../base/base.gyp:base',
38 '../cc/cc.gyp:cc',
39 '../cc/blink/cc_blink.gyp:cc_blink',
40 '../ipc/ipc.gyp:ipc',
41 ],
42 'include_dirs': [
43 '..',
44 ],
45 'sources': [
46 'framelet/common/framelet_constants.cc',
47 'framelet/common/framelet_constants.h',
48 'framelet/common/framelet_messages.h',
49 'framelet/common/framelet_message_generator.cc',
50 'framelet/common/framelet_message_generator.h',
51 ]
52 },
53 {
54 'target_name': 'framelet_renderer',
55 'type': 'static_library',
56 'dependencies': [
57 '../base/base.gyp:base',
58 '../components/components.gyp:guest_view_renderer',
59 '../content/content.gyp:content_common',
60 '../content/content.gyp:content_renderer',
61 '../third_party/WebKit/public/blink.gyp:blink',
62 '../v8/tools/gyp/v8.gyp:v8',
63 'components_resources.gyp:components_resources',
64 'framelet_common'
65 ],
66 'include_dirs': [
67 '..',
68 ],
69 'sources': [
70 'framelet/renderer/framelet_container.cc',
71 'framelet/renderer/framelet_container.h',
72 ],
73 },
74 ],
75 }]
76 ]
77 }
OLDNEW
« no previous file with comments | « components/components_google_chrome_strings.grd ('k') | components/framelet/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698