| 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("//chrome/common/features.gni") | 9 import("//chrome/common/features.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 436 ] | 436 ] |
| 437 } | 437 } |
| 438 if (is_mac) { | 438 if (is_mac) { |
| 439 sources += | 439 sources += |
| 440 rebase_path(gypi_values.chrome_browser_mac_sources, ".", "//chrome") | 440 rebase_path(gypi_values.chrome_browser_mac_sources, ".", "//chrome") |
| 441 deps += [ | 441 deps += [ |
| 442 "//chrome/app_shim", | 442 "//chrome/app_shim", |
| 443 "//chrome/browser/apps/app_shim", | 443 "//chrome/browser/apps/app_shim", |
| 444 ] | 444 ] |
| 445 } | 445 } |
| 446 if (is_mac || is_android) { | |
| 447 sources += rebase_path( | |
| 448 gypi_values.chrome_browser_password_manager_mac_android_sources, | |
| 449 ".", | |
| 450 "//chrome") | |
| 451 } | |
| 452 if (enable_extensions) { | 446 if (enable_extensions) { |
| 453 public_deps += [ "//chrome/browser/extensions" ] | 447 public_deps += [ "//chrome/browser/extensions" ] |
| 454 deps += [ | 448 deps += [ |
| 455 "//chrome/browser/sync_file_system/drive_backend:sync_file_system_drive_pr
oto", | 449 "//chrome/browser/sync_file_system/drive_backend:sync_file_system_drive_pr
oto", |
| 456 "//chrome/common/extensions/api", | 450 "//chrome/common/extensions/api", |
| 457 "//chrome/common/extensions/api:api_registration", | 451 "//chrome/common/extensions/api:api_registration", |
| 458 "//components/drive:drive", | 452 "//components/drive:drive", |
| 459 "//components/proximity_auth/ble", | 453 "//components/proximity_auth/ble", |
| 460 "//components/proximity_auth/cryptauth", | 454 "//components/proximity_auth/cryptauth", |
| 461 "//extensions/components/javascript_dialog_extensions_client", | 455 "//extensions/components/javascript_dialog_extensions_client", |
| (...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1331 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1325 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1332 deps = [ | 1326 deps = [ |
| 1333 "//components/google/core/browser", | 1327 "//components/google/core/browser", |
| 1334 "//components/omnibox/browser", | 1328 "//components/omnibox/browser", |
| 1335 "//components/rlz", | 1329 "//components/rlz", |
| 1336 "//components/search_engines", | 1330 "//components/search_engines", |
| 1337 "//rlz:rlz_lib", | 1331 "//rlz:rlz_lib", |
| 1338 ] | 1332 ] |
| 1339 } | 1333 } |
| 1340 } | 1334 } |
| OLD | NEW |