OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
7 | 7 |
8 gypi_values = exec_script( | 8 gypi_values = exec_script( |
9 "//build/gypi_to_gn.py", | 9 "//build/gypi_to_gn.py", |
10 [ rebase_path("../chrome_renderer.gypi") ], | 10 [ rebase_path("../chrome_renderer.gypi") ], |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 "//content/app/resources", | 49 "//content/app/resources", |
50 "//content/app/strings", | 50 "//content/app/strings", |
51 "//content/public/renderer", | 51 "//content/public/renderer", |
52 "//extensions:extensions_resources", | 52 "//extensions:extensions_resources", |
53 "//extensions/renderer", | 53 "//extensions/renderer", |
54 "//media/cast:net", | 54 "//media/cast:net", |
55 "//media/cast:sender", | 55 "//media/cast:sender", |
56 "//media/cast/logging/proto", | 56 "//media/cast/logging/proto", |
57 "//net", | 57 "//net", |
58 "//skia", | 58 "//skia", |
| 59 "//storage/common", |
59 "//third_party/WebKit/public:blink", | 60 "//third_party/WebKit/public:blink", |
60 "//third_party/WebKit/public:resources", | 61 "//third_party/WebKit/public:resources", |
61 "//third_party/icu", | 62 "//third_party/icu", |
62 "//third_party/npapi", | 63 "//third_party/npapi", |
63 "//third_party/re2", | 64 "//third_party/re2", |
64 "//third_party/widevine/cdm:version_h", | 65 "//third_party/widevine/cdm:version_h", |
65 "//ui/surface", | 66 "//ui/surface", |
66 "//v8:v8", | 67 "//v8:v8", |
67 "//webkit/child", | |
68 "//storage/common", | |
69 ] | 68 ] |
70 | 69 |
71 if (enable_nacl) { | 70 if (enable_nacl) { |
72 deps += [ | 71 deps += [ |
73 #'../components/nacl.gyp:nacl', TODO(GYP) | 72 #'../components/nacl.gyp:nacl', TODO(GYP) |
74 #'../components/nacl.gyp:nacl_renderer', TODO(GYP) | 73 #'../components/nacl.gyp:nacl_renderer', TODO(GYP) |
75 ] | 74 ] |
76 } | 75 } |
77 | 76 |
78 if (enable_plugins) { | 77 if (enable_plugins) { |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
152 # We should isolate the APIs needed by the renderer. | 151 # We should isolate the APIs needed by the renderer. |
153 "//chrome/common/extensions/api", | 152 "//chrome/common/extensions/api", |
154 ] | 153 ] |
155 } | 154 } |
156 | 155 |
157 # TODO(GYP) | 156 # TODO(GYP) |
158 # 'sources': [ | 157 # 'sources': [ |
159 # 'renderer/printing/print_web_view_helper_pdf_win.cc', | 158 # 'renderer/printing/print_web_view_helper_pdf_win.cc', |
160 # ], | 159 # ], |
161 } | 160 } |
OLD | NEW |