| 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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 } | 147 } |
| 148 if (!is_ios) { | 148 if (!is_ios) { |
| 149 deps += [ | 149 deps += [ |
| 150 # TODO(hclam): See crbug.com/298380 for details. | 150 # TODO(hclam): See crbug.com/298380 for details. |
| 151 # We should isolate the APIs needed by the renderer. | 151 # We should isolate the APIs needed by the renderer. |
| 152 "//chrome/common/extensions/api", | 152 "//chrome/common/extensions/api", |
| 153 ] | 153 ] |
| 154 } | 154 } |
| 155 | 155 |
| 156 # TODO(GYP) | 156 # TODO(GYP) |
| 157 # ['win_pdf_metafile_for_printing==1', { | |
| 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 # }, { | |
| 162 # 'sources': [ | |
| 163 # 'renderer/printing/print_web_view_helper_win.cc', | |
| 164 # ], | |
| 165 # }], | |
| 166 } | 160 } |
| OLD | NEW |