Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Side by Side Diff: chrome/renderer/BUILD.gn

Issue 1135173004: Rename third_party/hunspell_new back to third_party/hunspell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/renderer/spellchecker/hunspell_engine.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//build/gypi_to_gn.py", 8 gypi_values = exec_script("//build/gypi_to_gn.py",
9 [ rebase_path("../chrome_renderer.gypi") ], 9 [ rebase_path("../chrome_renderer.gypi") ],
10 "scope", 10 "scope",
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 } 131 }
132 if (enable_extensions && enable_webrtc) { 132 if (enable_extensions && enable_webrtc) {
133 sources += 133 sources +=
134 rebase_path(gypi_values.chrome_renderer_webrtc_extensions_sources, 134 rebase_path(gypi_values.chrome_renderer_webrtc_extensions_sources,
135 ".", 135 ".",
136 "..") 136 "..")
137 } 137 }
138 if (enable_spellcheck) { 138 if (enable_spellcheck) {
139 sources += 139 sources +=
140 rebase_path(gypi_values.chrome_renderer_spellchecker_sources, ".", "..") 140 rebase_path(gypi_values.chrome_renderer_spellchecker_sources, ".", "..")
141 deps += [ "//third_party/hunspell_new" ] 141 deps += [ "//third_party/hunspell" ]
142 } 142 }
143 143
144 if (enable_basic_printing || enable_print_preview) { 144 if (enable_basic_printing || enable_print_preview) {
145 deps += [ "//printing" ] 145 deps += [ "//printing" ]
146 sources += 146 sources +=
147 rebase_path(gypi_values.chrome_renderer_printing_sources, ".", "..") 147 rebase_path(gypi_values.chrome_renderer_printing_sources, ".", "..")
148 if (enable_print_preview) { 148 if (enable_print_preview) {
149 sources += rebase_path(gypi_values.chrome_renderer_full_printing_sources, 149 sources += rebase_path(gypi_values.chrome_renderer_full_printing_sources,
150 ".", 150 ".",
151 "..") 151 "..")
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 deps += [ "//chrome/service" ] 192 deps += [ "//chrome/service" ]
193 } 193 }
194 194
195 if (enable_webrtc) { 195 if (enable_webrtc) {
196 sources += [ 196 sources += [
197 "media/mock_webrtc_logging_message_filter.cc", 197 "media/mock_webrtc_logging_message_filter.cc",
198 "media/mock_webrtc_logging_message_filter.h", 198 "media/mock_webrtc_logging_message_filter.h",
199 ] 199 ]
200 } 200 }
201 } 201 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | chrome/renderer/spellchecker/hunspell_engine.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698