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("//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 Loading... | |
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 Loading... | |
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 } |
OLD | NEW |