Chromium Code Reviews| 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 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 514 | 514 |
| 515 if (enable_app_list) { | 515 if (enable_app_list) { |
| 516 sources += rebase_path(gypi_values.chrome_browser_ui_app_list_sources, | 516 sources += rebase_path(gypi_values.chrome_browser_ui_app_list_sources, |
| 517 ".", | 517 ".", |
| 518 "//chrome") | 518 "//chrome") |
| 519 if (is_chromeos) { | 519 if (is_chromeos) { |
| 520 sources += rebase_path(gypi_values.chrome_browser_ui_chromeos_arc_sources, | 520 sources += rebase_path(gypi_values.chrome_browser_ui_chromeos_arc_sources, |
| 521 ".", | 521 ".", |
| 522 "//chrome") | 522 "//chrome") |
| 523 } | 523 } |
| 524 if (!is_mac) { | |
|
msw
2016/05/05 01:51:06
This is a bit odd (I first thought "Why not if too
tapted
2016/05/05 02:53:42
Yup, in fact ui_app_list_views_sources can then ju
| |
| 525 sources += | |
| 526 rebase_path(gypi_values.chrome_browser_ui_app_list_views_sources, | |
| 527 ".", | |
| 528 "//chrome") | |
| 529 } | |
| 524 deps += [ "//ui/app_list" ] | 530 deps += [ "//ui/app_list" ] |
| 525 } else { | 531 } else { |
| 526 sources += rebase_path(gypi_values.chrome_browser_ui_non_app_list_sources, | 532 sources += rebase_path(gypi_values.chrome_browser_ui_non_app_list_sources, |
| 527 ".", | 533 ".", |
| 528 "//chrome") | 534 "//chrome") |
| 529 } | 535 } |
| 530 if (enable_autofill_dialog) { | 536 if (enable_autofill_dialog) { |
| 531 sources += | 537 sources += |
| 532 rebase_path(gypi_values.chrome_browser_ui_autofill_dialog_sources, | 538 rebase_path(gypi_values.chrome_browser_ui_autofill_dialog_sources, |
| 533 ".", | 539 ".", |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 673 "//chrome/browser", | 679 "//chrome/browser", |
| 674 "//content/public/browser", | 680 "//content/public/browser", |
| 675 "//content/public/common", | 681 "//content/public/common", |
| 676 "//content/test:test_support", | 682 "//content/test:test_support", |
| 677 "//net:test_support", | 683 "//net:test_support", |
| 678 "//skia", | 684 "//skia", |
| 679 "//testing/gtest", | 685 "//testing/gtest", |
| 680 "//ui/base", | 686 "//ui/base", |
| 681 ] | 687 ] |
| 682 } | 688 } |
| OLD | NEW |