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 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, | |
|
tapted
2016/05/13 22:14:34
this bit is no longer needed
Elly Fong-Jones
2016/05/16 16:17:44
Done.
| |
| 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 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 685 "//chrome/browser", | 689 "//chrome/browser", |
| 686 "//content/public/browser", | 690 "//content/public/browser", |
| 687 "//content/public/common", | 691 "//content/public/common", |
| 688 "//content/test:test_support", | 692 "//content/test:test_support", |
| 689 "//net:test_support", | 693 "//net:test_support", |
| 690 "//skia", | 694 "//skia", |
| 691 "//testing/gtest", | 695 "//testing/gtest", |
| 692 "//ui/base", | 696 "//ui/base", |
| 693 ] | 697 ] |
| 694 } | 698 } |
| OLD | NEW |