| 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 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 500 | 500 |
| 501 if (is_linux && !is_chromeos) { | 501 if (is_linux && !is_chromeos) { |
| 502 deps += [ "//third_party/speech-dispatcher" ] | 502 deps += [ "//third_party/speech-dispatcher" ] |
| 503 } | 503 } |
| 504 | 504 |
| 505 if (is_chromeos) { | 505 if (is_chromeos) { |
| 506 sources += rebase_path(gypi_values.chrome_browser_chromeos_sources, | 506 sources += rebase_path(gypi_values.chrome_browser_chromeos_sources, |
| 507 ".", | 507 ".", |
| 508 "//chrome") | 508 "//chrome") |
| 509 deps += [ "//chrome/browser/chromeos" ] | 509 deps += [ "//chrome/browser/chromeos" ] |
| 510 } else { | |
| 511 # Non-ChromeOS. | |
| 512 sources += rebase_path(gypi_values.chrome_browser_non_chromeos_sources, | |
| 513 ".", | |
| 514 "//chrome") | |
| 515 } | 510 } |
| 516 | 511 |
| 517 if (is_ios) { | 512 if (is_ios) { |
| 518 sources -= [ | 513 sources -= [ |
| 519 "metrics/signin_status_metrics_provider_base.cc", | 514 "metrics/signin_status_metrics_provider_base.cc", |
| 520 "metrics/signin_status_metrics_provider_base.h", | 515 "metrics/signin_status_metrics_provider_base.h", |
| 521 ] | 516 ] |
| 522 } | 517 } |
| 523 | 518 |
| 524 if (is_chromeos || is_ios) { | 519 if (is_chromeos || is_ios) { |
| (...skipping 712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1237 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1232 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1238 deps = [ | 1233 deps = [ |
| 1239 "//components/google/core/browser", | 1234 "//components/google/core/browser", |
| 1240 "//components/omnibox/browser", | 1235 "//components/omnibox/browser", |
| 1241 "//components/rlz", | 1236 "//components/rlz", |
| 1242 "//components/search_engines", | 1237 "//components/search_engines", |
| 1243 "//rlz:rlz_lib", | 1238 "//rlz:rlz_lib", |
| 1244 ] | 1239 ] |
| 1245 } | 1240 } |
| 1246 } | 1241 } |
| OLD | NEW |