| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 10 | 10 |
| (...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 } | 497 } |
| 498 if (is_linux && !is_chromeos) { | 498 if (is_linux && !is_chromeos) { |
| 499 deps += [ "//third_party/speech-dispatcher" ] | 499 deps += [ "//third_party/speech-dispatcher" ] |
| 500 } | 500 } |
| 501 | 501 |
| 502 if (is_chromeos) { | 502 if (is_chromeos) { |
| 503 sources += rebase_path(gypi_values.chrome_browser_chromeos_sources, | 503 sources += rebase_path(gypi_values.chrome_browser_chromeos_sources, |
| 504 ".", | 504 ".", |
| 505 "//chrome") | 505 "//chrome") |
| 506 deps += [ "//chrome/browser/chromeos" ] | 506 deps += [ "//chrome/browser/chromeos" ] |
| 507 } else { |
| 508 # Non-ChromeOS. |
| 509 sources += rebase_path(gypi_values.chrome_browser_non_chromeos_sources, |
| 510 ".", |
| 511 "//chrome") |
| 507 } | 512 } |
| 508 | 513 |
| 509 if (is_ios) { | 514 if (is_ios) { |
| 510 sources -= [ | 515 sources -= [ |
| 511 "metrics/signin_status_metrics_provider_base.cc", | 516 "metrics/signin_status_metrics_provider_base.cc", |
| 512 "metrics/signin_status_metrics_provider_base.h", | 517 "metrics/signin_status_metrics_provider_base.h", |
| 513 ] | 518 ] |
| 514 } | 519 } |
| 515 | 520 |
| 516 if (is_chromeos || is_ios) { | 521 if (is_chromeos || is_ios) { |
| (...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1229 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1234 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1230 deps = [ | 1235 deps = [ |
| 1231 "//components/google/core/browser", | 1236 "//components/google/core/browser", |
| 1232 "//components/omnibox/browser", | 1237 "//components/omnibox/browser", |
| 1233 "//components/rlz", | 1238 "//components/rlz", |
| 1234 "//components/search_engines", | 1239 "//components/search_engines", |
| 1235 "//rlz:rlz_lib", | 1240 "//rlz:rlz_lib", |
| 1236 ] | 1241 ] |
| 1237 } | 1242 } |
| 1238 } | 1243 } |
| OLD | NEW |