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 21 matching lines...) Expand all Loading... | |
32 deps = [ | 32 deps = [ |
33 "//base/allocator", | 33 "//base/allocator", |
34 "//chrome/common", | 34 "//chrome/common", |
35 "//chrome/common/net", | 35 "//chrome/common/net", |
36 "//chrome:resources", | 36 "//chrome:resources", |
37 "//chrome:strings", | 37 "//chrome:strings", |
38 "//components/autofill/content/renderer", | 38 "//components/autofill/content/renderer", |
39 "//components/data_reduction_proxy/common", | 39 "//components/data_reduction_proxy/common", |
40 "//components/plugins/renderer", | 40 "//components/plugins/renderer", |
41 "//components/startup_metric_utils", | 41 "//components/startup_metric_utils", |
42 "//components/password_manager/content/renderer", | |
Ilya Sherman
2014/08/19 23:55:51
nit: Alphabetize, plz.
Mike West
2014/08/20 13:17:18
Done.
| |
42 "//components/translate/core/common", | 43 "//components/translate/core/common", |
43 "//components/translate/core/language_detection", | 44 "//components/translate/core/language_detection", |
44 "//components/visitedlink/renderer", | 45 "//components/visitedlink/renderer", |
45 "//content/app/strings", | 46 "//content/app/strings", |
46 "//content/public/renderer", | 47 "//content/public/renderer", |
47 "//extensions:extensions_resources", | 48 "//extensions:extensions_resources", |
48 "//media/cast/logging/proto", | 49 "//media/cast/logging/proto", |
49 "//net", | 50 "//net", |
50 "//skia", | 51 "//skia", |
51 "//third_party/WebKit/public:blink", | 52 "//third_party/WebKit/public:blink", |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
153 # ['win_pdf_metafile_for_printing==1', { | 154 # ['win_pdf_metafile_for_printing==1', { |
154 # 'sources': [ | 155 # 'sources': [ |
155 # 'renderer/printing/print_web_view_helper_pdf_win.cc', | 156 # 'renderer/printing/print_web_view_helper_pdf_win.cc', |
156 # ], | 157 # ], |
157 # }, { | 158 # }, { |
158 # 'sources': [ | 159 # 'sources': [ |
159 # 'renderer/printing/print_web_view_helper_win.cc', | 160 # 'renderer/printing/print_web_view_helper_win.cc', |
160 # ], | 161 # ], |
161 # }], | 162 # }], |
162 } | 163 } |
OLD | NEW |