| 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 19 matching lines...) Expand all Loading... |
| 30 deps = [ | 30 deps = [ |
| 31 "//base/allocator", | 31 "//base/allocator", |
| 32 "//chrome/common", | 32 "//chrome/common", |
| 33 "//chrome/common/net", | 33 "//chrome/common/net", |
| 34 "//chrome:resources", | 34 "//chrome:resources", |
| 35 "//chrome:strings", | 35 "//chrome:strings", |
| 36 "//components/autofill/content/renderer", | 36 "//components/autofill/content/renderer", |
| 37 "//components/data_reduction_proxy/common", | 37 "//components/data_reduction_proxy/common", |
| 38 "//components/plugins/renderer", | 38 "//components/plugins/renderer", |
| 39 "//components/startup_metric_utils", | 39 "//components/startup_metric_utils", |
| 40 "//components/password_manager/content/renderer", |
| 40 "//components/translate/core/common", | 41 "//components/translate/core/common", |
| 41 "//components/translate/core/language_detection", | 42 "//components/translate/core/language_detection", |
| 42 "//components/visitedlink/renderer", | 43 "//components/visitedlink/renderer", |
| 43 "//content/app/strings", | 44 "//content/app/strings", |
| 44 "//content/public/renderer", | 45 "//content/public/renderer", |
| 45 "//extensions:extensions_resources", | 46 "//extensions:extensions_resources", |
| 46 "//media/cast/logging/proto", | 47 "//media/cast/logging/proto", |
| 47 "//net", | 48 "//net", |
| 48 "//skia", | 49 "//skia", |
| 49 "//third_party/WebKit/public:blink", | 50 "//third_party/WebKit/public:blink", |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 # ['win_pdf_metafile_for_printing==1', { | 151 # ['win_pdf_metafile_for_printing==1', { |
| 151 # 'sources': [ | 152 # 'sources': [ |
| 152 # 'renderer/printing/print_web_view_helper_pdf_win.cc', | 153 # 'renderer/printing/print_web_view_helper_pdf_win.cc', |
| 153 # ], | 154 # ], |
| 154 # }, { | 155 # }, { |
| 155 # 'sources': [ | 156 # 'sources': [ |
| 156 # 'renderer/printing/print_web_view_helper_win.cc', | 157 # 'renderer/printing/print_web_view_helper_win.cc', |
| 157 # ], | 158 # ], |
| 158 # }], | 159 # }], |
| 159 } | 160 } |
| OLD | NEW |