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