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 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 ] | 366 ] |
367 } | 367 } |
368 if (is_mac) { | 368 if (is_mac) { |
369 sources += | 369 sources += |
370 rebase_path(gypi_values.chrome_browser_mac_sources, ".", "//chrome") | 370 rebase_path(gypi_values.chrome_browser_mac_sources, ".", "//chrome") |
371 deps += [ | 371 deps += [ |
372 #"app_shim" TODO(GYP) bug 512600 | 372 #"app_shim" TODO(GYP) bug 512600 |
373 #"browser_app_shim" TODO(GYP) bug 512600 | 373 #"browser_app_shim" TODO(GYP) bug 512600 |
374 ] | 374 ] |
375 } | 375 } |
| 376 if (is_mac || is_android) { |
| 377 sources += rebase_path( |
| 378 gypi_values.chrome_browser_password_manager_mac_android_sources, |
| 379 ".", |
| 380 "//chrome") |
| 381 } |
376 if (enable_extensions) { | 382 if (enable_extensions) { |
377 public_deps += [ "//chrome/browser/extensions" ] | 383 public_deps += [ "//chrome/browser/extensions" ] |
378 deps += [ | 384 deps += [ |
379 "//chrome/browser/sync_file_system/drive_backend:sync_file_system_drive_pr
oto", | 385 "//chrome/browser/sync_file_system/drive_backend:sync_file_system_drive_pr
oto", |
380 "//chrome/common/extensions/api", | 386 "//chrome/common/extensions/api", |
381 "//chrome/common/extensions/api:api_registration", | 387 "//chrome/common/extensions/api:api_registration", |
382 "//components/drive:drive", | 388 "//components/drive:drive", |
383 "//components/proximity_auth/ble", | 389 "//components/proximity_auth/ble", |
384 "//components/proximity_auth/cryptauth", | 390 "//components/proximity_auth/cryptauth", |
385 "//extensions/components/javascript_dialog_extensions_client", | 391 "//extensions/components/javascript_dialog_extensions_client", |
(...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1243 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1249 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
1244 deps = [ | 1250 deps = [ |
1245 "//components/google/core/browser", | 1251 "//components/google/core/browser", |
1246 "//components/omnibox/browser", | 1252 "//components/omnibox/browser", |
1247 "//components/rlz", | 1253 "//components/rlz", |
1248 "//components/search_engines", | 1254 "//components/search_engines", |
1249 "//rlz:rlz_lib", | 1255 "//rlz:rlz_lib", |
1250 ] | 1256 ] |
1251 } | 1257 } |
1252 } | 1258 } |
OLD | NEW |