| 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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 | 403 |
| 404 if (is_mac) { | 404 if (is_mac) { |
| 405 sources += | 405 sources += |
| 406 rebase_path(gypi_values.chrome_browser_ui_mac_sources, ".", "//chrome") | 406 rebase_path(gypi_values.chrome_browser_ui_mac_sources, ".", "//chrome") |
| 407 deps += [ | 407 deps += [ |
| 408 ":generate_localizer", | 408 ":generate_localizer", |
| 409 "//third_party/apple_sample_code", | 409 "//third_party/apple_sample_code", |
| 410 "//third_party/google_toolbox_for_mac", | 410 "//third_party/google_toolbox_for_mac", |
| 411 "//third_party/molokocacao", | 411 "//third_party/molokocacao", |
| 412 "//third_party/mozilla", | 412 "//third_party/mozilla", |
| 413 "//ui/accelerated_widget_mac:accelerated_widget_mac", |
| 413 ] | 414 ] |
| 414 if (mac_views_browser) { | 415 if (mac_views_browser) { |
| 415 sources += rebase_path( | 416 sources += rebase_path( |
| 416 gypi_values.chrome_browser_ui_views_mac_experimental_sources, | 417 gypi_values.chrome_browser_ui_views_mac_experimental_sources, |
| 417 ".", | 418 ".", |
| 418 "//chrome") | 419 "//chrome") |
| 419 sources += | 420 sources += |
| 420 rebase_path(gypi_values.chrome_browser_ui_views_non_mac_sources, | 421 rebase_path(gypi_values.chrome_browser_ui_views_non_mac_sources, |
| 421 ".", | 422 ".", |
| 422 "//chrome") | 423 "//chrome") |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 667 "//chrome/browser", | 668 "//chrome/browser", |
| 668 "//content/public/browser", | 669 "//content/public/browser", |
| 669 "//content/public/common", | 670 "//content/public/common", |
| 670 "//content/test:test_support", | 671 "//content/test:test_support", |
| 671 "//net:test_support", | 672 "//net:test_support", |
| 672 "//skia", | 673 "//skia", |
| 673 "//testing/gtest", | 674 "//testing/gtest", |
| 674 "//ui/base", | 675 "//ui/base", |
| 675 ] | 676 ] |
| 676 } | 677 } |
| OLD | NEW |