| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//chrome/common/features.gni") | 8 import("//chrome/common/features.gni") |
| 9 | 9 |
| 10 gypi_values = exec_script("//build/gypi_to_gn.py", | 10 gypi_values = exec_script("//build/gypi_to_gn.py", |
| (...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 518 | 518 |
| 519 if (enable_app_list) { | 519 if (enable_app_list) { |
| 520 sources += rebase_path(gypi_values.chrome_browser_ui_app_list_sources, | 520 sources += rebase_path(gypi_values.chrome_browser_ui_app_list_sources, |
| 521 ".", | 521 ".", |
| 522 "//chrome") | 522 "//chrome") |
| 523 if (is_chromeos) { | 523 if (is_chromeos) { |
| 524 sources += rebase_path(gypi_values.chrome_browser_ui_chromeos_arc_sources, | 524 sources += rebase_path(gypi_values.chrome_browser_ui_chromeos_arc_sources, |
| 525 ".", | 525 ".", |
| 526 "//chrome") | 526 "//chrome") |
| 527 } | 527 } |
| 528 if (!is_mac) { | 528 if (!is_mac && !use_ash) { |
| 529 sources += | 529 sources += |
| 530 rebase_path(gypi_values.chrome_browser_ui_app_list_views_sources, | 530 rebase_path(gypi_values.chrome_browser_ui_app_list_views_sources, |
| 531 ".", | 531 ".", |
| 532 "//chrome") | 532 "//chrome") |
| 533 } | 533 } |
| 534 deps += [ "//ui/app_list" ] | 534 deps += [ "//ui/app_list" ] |
| 535 } else { | 535 } else { |
| 536 sources += rebase_path(gypi_values.chrome_browser_ui_non_app_list_sources, | 536 sources += rebase_path(gypi_values.chrome_browser_ui_non_app_list_sources, |
| 537 ".", | 537 ".", |
| 538 "//chrome") | 538 "//chrome") |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 "//chrome/browser", | 673 "//chrome/browser", |
| 674 "//content/public/browser", | 674 "//content/public/browser", |
| 675 "//content/public/common", | 675 "//content/public/common", |
| 676 "//content/test:test_support", | 676 "//content/test:test_support", |
| 677 "//net:test_support", | 677 "//net:test_support", |
| 678 "//skia", | 678 "//skia", |
| 679 "//testing/gtest", | 679 "//testing/gtest", |
| 680 "//ui/base", | 680 "//ui/base", |
| 681 ] | 681 ] |
| 682 } | 682 } |
| OLD | NEW |