| 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 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 282 "//chrome") | 282 "//chrome") |
| 283 } | 283 } |
| 284 if (toolkit_views) { | 284 if (toolkit_views) { |
| 285 sources += rebase_path(gypi_values.chrome_browser_ui_views_sources, | 285 sources += rebase_path(gypi_values.chrome_browser_ui_views_sources, |
| 286 ".", | 286 ".", |
| 287 "//chrome") | 287 "//chrome") |
| 288 deps += [ "//components/constrained_window" ] | 288 deps += [ "//components/constrained_window" ] |
| 289 | 289 |
| 290 if (enable_extensions) { | 290 if (enable_extensions) { |
| 291 deps += [ "//extensions/components/native_app_window" ] | 291 deps += [ "//extensions/components/native_app_window" ] |
| 292 sources += |
| 293 rebase_path(gypi_values.chrome_browser_ui_views_extensions_sources, |
| 294 ".", |
| 295 "//chrome") |
| 292 } | 296 } |
| 293 | 297 |
| 294 if (!is_chromeos && (!is_mac || mac_views_browser)) { | 298 if (!is_chromeos && (!is_mac || mac_views_browser)) { |
| 295 sources += | 299 sources += |
| 296 rebase_path(gypi_values.chrome_browser_ui_views_non_chromeos_sources, | 300 rebase_path(gypi_values.chrome_browser_ui_views_non_chromeos_sources, |
| 297 ".", | 301 ".", |
| 298 "//chrome") | 302 "//chrome") |
| 299 } | 303 } |
| 300 if (!is_mac) { | 304 if (!is_mac) { |
| 301 sources += | 305 sources += |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 676 "//chrome/browser", | 680 "//chrome/browser", |
| 677 "//content/public/browser", | 681 "//content/public/browser", |
| 678 "//content/public/common", | 682 "//content/public/common", |
| 679 "//content/test:test_support", | 683 "//content/test:test_support", |
| 680 "//net:test_support", | 684 "//net:test_support", |
| 681 "//skia", | 685 "//skia", |
| 682 "//testing/gtest", | 686 "//testing/gtest", |
| 683 "//ui/base", | 687 "//ui/base", |
| 684 ] | 688 ] |
| 685 } | 689 } |
| OLD | NEW |