| 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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 } else { | 464 } else { |
| 465 sources += rebase_path(gypi_values.chrome_browser_ui_cocoa_sources, | 465 sources += rebase_path(gypi_values.chrome_browser_ui_cocoa_sources, |
| 466 ".", | 466 ".", |
| 467 "//chrome") | 467 "//chrome") |
| 468 } | 468 } |
| 469 include_dirs = [ "$target_gen_dir" ] | 469 include_dirs = [ "$target_gen_dir" ] |
| 470 libs += [ | 470 libs += [ |
| 471 "Carbon.framework", | 471 "Carbon.framework", |
| 472 "Quartz.framework", | 472 "Quartz.framework", |
| 473 ] | 473 ] |
| 474 configs += | |
| 475 [ "//third_party/google_toolbox_for_mac:google_toolbox_for_mac_config" ] | |
| 476 } else { # non-Mac. | 474 } else { # non-Mac. |
| 477 sources += rebase_path(gypi_values.chrome_browser_ui_non_mac_sources, | 475 sources += rebase_path(gypi_values.chrome_browser_ui_non_mac_sources, |
| 478 ".", | 476 ".", |
| 479 "//chrome") | 477 "//chrome") |
| 480 } | 478 } |
| 481 | 479 |
| 482 if (is_win) { | 480 if (is_win) { |
| 483 sources += | 481 sources += |
| 484 rebase_path(gypi_values.chrome_browser_ui_win_sources, ".", "//chrome") | 482 rebase_path(gypi_values.chrome_browser_ui_win_sources, ".", "//chrome") |
| 485 public_deps += [ | 483 public_deps += [ |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 715 "//chrome/browser", | 713 "//chrome/browser", |
| 716 "//content/public/browser", | 714 "//content/public/browser", |
| 717 "//content/public/common", | 715 "//content/public/common", |
| 718 "//content/test:test_support", | 716 "//content/test:test_support", |
| 719 "//net:test_support", | 717 "//net:test_support", |
| 720 "//skia", | 718 "//skia", |
| 721 "//testing/gtest", | 719 "//testing/gtest", |
| 722 "//ui/base", | 720 "//ui/base", |
| 723 ] | 721 ] |
| 724 } | 722 } |
| OLD | NEW |