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

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

Issue 1230933002: Patch 3.1: Refactored spellcheck_message_filter to be generic (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@platform_flag
Patch Set: More outdated reference fixes, build config fixes for gn Created 5 years, 5 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
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("//tools/grit/grit_rule.gni") 5 import("//tools/grit/grit_rule.gni")
6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") 6 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.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_common.gypi") ], 9 [ rebase_path("../chrome_common.gypi") ],
10 "scope", 10 "scope",
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 "local_discovery/service_discovery_client_impl.h", 184 "local_discovery/service_discovery_client_impl.h",
185 ] 185 ]
186 } 186 }
187 187
188 if (is_android) { 188 if (is_android) {
189 sources -= [ 189 sources -= [
190 "badge_util.cc", 190 "badge_util.cc",
191 "chrome_version_info_posix.cc", 191 "chrome_version_info_posix.cc",
192 "icon_with_badge_image_source.cc", 192 "icon_with_badge_image_source.cc",
193 "media_galleries/metadata_types.h", 193 "media_galleries/metadata_types.h",
194 "spellcheck_common.cc",
please use gerrit instead 2015/07/10 18:35:43 I did not find where this is used on Android in th
dylanking 2015/07/11 01:46:24 I was wondering why I took this out in the first p
195 ] 194 ]
196 } else { 195 } else {
197 # Non-Android. 196 # Non-Android.
198 sources += 197 sources +=
199 rebase_path(gypi_values.chrome_common_importer_sources, ".", "//chrome") 198 rebase_path(gypi_values.chrome_common_importer_sources, ".", "//chrome")
200 } 199 }
201 200
202 if (is_chromeos) { 201 if (is_chromeos) {
203 sources -= [ "chrome_version_info_posix.cc" ] 202 sources -= [ "chrome_version_info_posix.cc" ]
204 } 203 }
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 ":constants", 355 ":constants",
357 "//base", 356 "//base",
358 ] 357 ]
359 } 358 }
360 359
361 mojom("mojo_bindings") { 360 mojom("mojo_bindings") {
362 sources = [ 361 sources = [
363 "resource_usage_reporter.mojom", 362 "resource_usage_reporter.mojom",
364 ] 363 ]
365 } 364 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698