| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//ios/web/js_compile.gni") | 6 import("//ios/web/js_compile.gni") |
| 7 | 7 |
| 8 source_set("browser") { | 8 source_set("browser") { |
| 9 sources = [ | 9 sources = [ |
| 10 "app_startup_parameters.h", | 10 "app_startup_parameters.h", |
| (...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 "web/web_view_type_util.mm", | 426 "web/web_view_type_util.mm", |
| 427 "web_data_service_factory.cc", | 427 "web_data_service_factory.cc", |
| 428 "web_data_service_factory.h", | 428 "web_data_service_factory.h", |
| 429 "web_resource/web_resource_util.cc", | 429 "web_resource/web_resource_util.cc", |
| 430 "web_resource/web_resource_util.h", | 430 "web_resource/web_resource_util.h", |
| 431 "xcallback_parameters.h", | 431 "xcallback_parameters.h", |
| 432 "xcallback_parameters.mm", | 432 "xcallback_parameters.mm", |
| 433 ] | 433 ] |
| 434 | 434 |
| 435 deps = [ | 435 deps = [ |
| 436 ":injected_js", |
| 436 "//base", | 437 "//base", |
| 437 "//base:prefs", | 438 "//base:prefs", |
| 438 "//breakpad:client", | 439 "//breakpad:client", |
| 439 "//components/autofill/core/browser", | 440 "//components/autofill/core/browser", |
| 440 "//components/autofill/core/common", | 441 "//components/autofill/core/common", |
| 441 "//components/autofill/ios/browser", | 442 "//components/autofill/ios/browser", |
| 442 "//components/bookmarks/browser", | 443 "//components/bookmarks/browser", |
| 443 "//components/bookmarks/managed", | 444 "//components/bookmarks/managed", |
| 444 "//components/component_updater", | 445 "//components/component_updater", |
| 445 "//components/content_settings/core/browser", | 446 "//components/content_settings/core/browser", |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 "//ios/public/provider/chrome/browser", | 508 "//ios/public/provider/chrome/browser", |
| 508 "//ios/web", | 509 "//ios/web", |
| 509 "//net", | 510 "//net", |
| 510 "//net:extras", | 511 "//net:extras", |
| 511 "//skia", | 512 "//skia", |
| 512 "//sync", | 513 "//sync", |
| 513 "//third_party/google_toolbox_for_mac", | 514 "//third_party/google_toolbox_for_mac", |
| 514 "//ui/base", | 515 "//ui/base", |
| 515 "//ui/gfx", | 516 "//ui/gfx", |
| 516 "//url", | 517 "//url", |
| 517 ":injected_js", | |
| 518 | 518 |
| 519 # TODO(crbug.com/459705): add support for resource packing and change the | 519 # TODO(crbug.com/459705): add support for resource packing and change the |
| 520 # dependency to be on the packed resources instead of the unpacked ones. | 520 # dependency to be on the packed resources instead of the unpacked ones. |
| 521 "//ios/chrome/app/strings", | 521 "//ios/chrome/app/strings", |
| 522 "//ios/chrome/app/theme", | 522 "//ios/chrome/app/theme", |
| 523 ] | 523 ] |
| 524 | 524 |
| 525 libs = [ | 525 libs = [ |
| 526 "Accelerate.framework", | 526 "Accelerate.framework", |
| 527 "CoreGraphics.framework", | 527 "CoreGraphics.framework", |
| 528 "CoreLocation.framework", | 528 "CoreLocation.framework", |
| 529 "Foundation.framework", | 529 "Foundation.framework", |
| 530 "QuartzCore.framework", | 530 "QuartzCore.framework", |
| 531 "UIKit.framework", | 531 "UIKit.framework", |
| 532 ] | 532 ] |
| 533 | 533 |
| 534 if (enable_rlz) { | 534 if (enable_rlz) { |
| 535 deps += [ | 535 deps += [ |
| 536 ":rlz", |
| 536 "//components/rlz", | 537 "//components/rlz", |
| 537 ":rlz", | |
| 538 ] | 538 ] |
| 539 } | 539 } |
| 540 | 540 |
| 541 if (enable_configuration_policy) { | 541 if (enable_configuration_policy) { |
| 542 deps += [ | 542 deps += [ |
| 543 "//components/policy/core/browser", | 543 "//components/policy/core/browser", |
| 544 "//components/policy/core/common", | 544 "//components/policy/core/common", |
| 545 ] | 545 ] |
| 546 } | 546 } |
| 547 } | 547 } |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 "//components/signin/ios/browser", | 593 "//components/signin/ios/browser", |
| 594 "//ios/chrome/browser", | 594 "//ios/chrome/browser", |
| 595 "//ios/chrome/test", | 595 "//ios/chrome/test", |
| 596 "//ios/public/provider/chrome/browser", | 596 "//ios/public/provider/chrome/browser", |
| 597 "//testing/gmock", | 597 "//testing/gmock", |
| 598 "//testing/gtest", | 598 "//testing/gtest", |
| 599 "//ui/base", | 599 "//ui/base", |
| 600 "//url", | 600 "//url", |
| 601 ] | 601 ] |
| 602 } | 602 } |
| OLD | NEW |