| 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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
| 6 import("//chrome/common/features.gni") | 6 import("//chrome/common/features.gni") |
| 7 import("//chrome/version.gni") | 7 import("//chrome/version.gni") |
| 8 import("//mojo/public/tools/bindings/mojom.gni") | 8 import("//mojo/public/tools/bindings/mojom.gni") |
| 9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
| 10 | 10 |
| (...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 } | 212 } |
| 213 if (enable_mdns) { | 213 if (enable_mdns) { |
| 214 sources += [ | 214 sources += [ |
| 215 "local_discovery/service_discovery_client_impl.cc", | 215 "local_discovery/service_discovery_client_impl.cc", |
| 216 "local_discovery/service_discovery_client_impl.h", | 216 "local_discovery/service_discovery_client_impl.h", |
| 217 ] | 217 ] |
| 218 } | 218 } |
| 219 | 219 |
| 220 if (is_android) { | 220 if (is_android) { |
| 221 sources -= [ | 221 sources -= [ |
| 222 "badge_util.cc", | |
| 223 "channel_info_posix.cc", | 222 "channel_info_posix.cc", |
| 224 "icon_with_badge_image_source.cc", | |
| 225 "media_galleries/metadata_types.h", | 223 "media_galleries/metadata_types.h", |
| 226 ] | 224 ] |
| 227 } else { | 225 } else { |
| 228 # Non-Android. | 226 # Non-Android. |
| 229 sources += | 227 sources += |
| 230 rebase_path(gypi_values.chrome_common_importer_sources, ".", "//chrome") | 228 rebase_path(gypi_values.chrome_common_importer_sources, ".", "//chrome") |
| 231 } | 229 } |
| 232 | 230 |
| 233 if (is_chromeos) { | 231 if (is_chromeos) { |
| 234 sources -= [ "channel_info_posix.cc" ] | 232 sources -= [ "channel_info_posix.cc" ] |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 ":constants", | 393 ":constants", |
| 396 "//base", | 394 "//base", |
| 397 ] | 395 ] |
| 398 } | 396 } |
| 399 | 397 |
| 400 mojom("mojo_bindings") { | 398 mojom("mojo_bindings") { |
| 401 sources = [ | 399 sources = [ |
| 402 "resource_usage_reporter.mojom", | 400 "resource_usage_reporter.mojom", |
| 403 ] | 401 ] |
| 404 } | 402 } |
| OLD | NEW |