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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 "//net", | 56 "//net", |
57 "//skia", | 57 "//skia", |
58 "//third_party/WebKit/public:blink", | 58 "//third_party/WebKit/public:blink", |
59 "//third_party/WebKit/public:resources", | 59 "//third_party/WebKit/public:resources", |
60 "//third_party/icu", | 60 "//third_party/icu", |
61 "//third_party/npapi", | 61 "//third_party/npapi", |
62 "//third_party/re2", | 62 "//third_party/re2", |
63 "//third_party/widevine/cdm:version_h", | 63 "//third_party/widevine/cdm:version_h", |
64 "//ui/surface", | 64 "//ui/surface", |
65 "//v8:v8", | 65 "//v8:v8", |
66 "//webkit/child", | |
67 "//webkit/common", | 66 "//webkit/common", |
68 ] | 67 ] |
69 | 68 |
70 if (enable_nacl) { | 69 if (enable_nacl) { |
71 deps += [ | 70 deps += [ |
72 #'../components/nacl.gyp:nacl', TODO(GYP) | 71 #'../components/nacl.gyp:nacl', TODO(GYP) |
73 #'../components/nacl.gyp:nacl_renderer', TODO(GYP) | 72 #'../components/nacl.gyp:nacl_renderer', TODO(GYP) |
74 ] | 73 ] |
75 } | 74 } |
76 | 75 |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 # We should isolate the APIs needed by the renderer. | 150 # We should isolate the APIs needed by the renderer. |
152 "//chrome/common/extensions/api", | 151 "//chrome/common/extensions/api", |
153 ] | 152 ] |
154 } | 153 } |
155 | 154 |
156 # TODO(GYP) | 155 # TODO(GYP) |
157 # 'sources': [ | 156 # 'sources': [ |
158 # 'renderer/printing/print_web_view_helper_pdf_win.cc', | 157 # 'renderer/printing/print_web_view_helper_pdf_win.cc', |
159 # ], | 158 # ], |
160 } | 159 } |
OLD | NEW |