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/chromecast_build.gni") | 5 import("//build/config/chromecast_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("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
(...skipping 3344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3355 ] | 3355 ] |
3356 } | 3356 } |
3357 if (!is_android) { | 3357 if (!is_android) { |
3358 deps += [ | 3358 deps += [ |
3359 "//third_party/libaddressinput", | 3359 "//third_party/libaddressinput", |
3360 "//third_party/libaddressinput:strings", | 3360 "//third_party/libaddressinput:strings", |
3361 ] | 3361 ] |
3362 } | 3362 } |
3363 if (enable_extensions) { | 3363 if (enable_extensions) { |
3364 deps += [ | 3364 deps += [ |
| 3365 "//chrome/browser/apps", |
3365 "//chrome/browser/extensions", | 3366 "//chrome/browser/extensions", |
3366 "//chrome/common/extensions/api", | 3367 "//chrome/common/extensions/api", |
3367 "//chrome/common/extensions/api:api_registration", | 3368 "//chrome/common/extensions/api:api_registration", |
3368 ] | 3369 ] |
3369 allow_circular_includes_from += [ "//chrome/browser/extensions" ] | 3370 allow_circular_includes_from += [ |
| 3371 "//chrome/browser/apps", |
| 3372 "//chrome/browser/extensions", |
| 3373 ] |
3370 sources += [ | 3374 sources += [ |
3371 "extensions/accelerator_priority.cc", | 3375 "extensions/accelerator_priority.cc", |
3372 "extensions/accelerator_priority.h", | 3376 "extensions/accelerator_priority.h", |
3373 "extensions/app_launch_params.cc", | 3377 "extensions/app_launch_params.cc", |
3374 "extensions/app_launch_params.h", | 3378 "extensions/app_launch_params.h", |
3375 "extensions/application_launch.cc", | 3379 "extensions/application_launch.cc", |
3376 "extensions/application_launch.h", | 3380 "extensions/application_launch.h", |
3377 "extensions/blocked_action_bubble_delegate.cc", | 3381 "extensions/blocked_action_bubble_delegate.cc", |
3378 "extensions/blocked_action_bubble_delegate.h", | 3382 "extensions/blocked_action_bubble_delegate.h", |
3379 "extensions/extension_action_platform_delegate.h", | 3383 "extensions/extension_action_platform_delegate.h", |
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3557 "test/test_confirm_bubble_model.cc", | 3561 "test/test_confirm_bubble_model.cc", |
3558 "test/test_confirm_bubble_model.h", | 3562 "test/test_confirm_bubble_model.h", |
3559 ] | 3563 ] |
3560 deps += [ "//chrome/test:test_support_ui" ] | 3564 deps += [ "//chrome/test:test_support_ui" ] |
3561 } | 3565 } |
3562 | 3566 |
3563 if (enable_extensions) { | 3567 if (enable_extensions) { |
3564 deps += [ "//extensions/browser" ] | 3568 deps += [ "//extensions/browser" ] |
3565 } | 3569 } |
3566 } | 3570 } |
OLD | NEW |