| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//chrome/common/features.gni") | 9 import("//chrome/common/features.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 795 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 806 "OpenGL.framework", | 806 "OpenGL.framework", |
| 807 "QuartzCore.framework", | 807 "QuartzCore.framework", |
| 808 "SecurityInterface.framework", | 808 "SecurityInterface.framework", |
| 809 ] | 809 ] |
| 810 } | 810 } |
| 811 | 811 |
| 812 if (enable_rlz) { | 812 if (enable_rlz) { |
| 813 deps += [ ":rlz" ] | 813 deps += [ ":rlz" ] |
| 814 } | 814 } |
| 815 | 815 |
| 816 # TODO(GYP) | |
| 817 # Temporary fix to break the browser target into smaller chunks so it | |
| 818 # will link with goma builds. | |
| 819 #["OS=="win" and chromium_win_pch==0", { | |
| 820 # "msvs_shard": 4, | |
| 821 #}], | |
| 822 | |
| 823 if (is_win) { | 816 if (is_win) { |
| 824 sources += | 817 sources += |
| 825 rebase_path(gypi_values.chrome_browser_win_sources, ".", "//chrome") | 818 rebase_path(gypi_values.chrome_browser_win_sources, ".", "//chrome") |
| 826 public_deps += [ | 819 public_deps += [ |
| 827 "//ui/views", | 820 "//ui/views", |
| 828 "//ui/views/controls/webview", | 821 "//ui/views/controls/webview", |
| 829 ] | 822 ] |
| 830 deps += [ | 823 deps += [ |
| 831 ":chrome_process_finder", | 824 ":chrome_process_finder", |
| 832 "//chrome:file_pre_reader", | 825 "//chrome:file_pre_reader", |
| (...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1337 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1330 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1338 deps = [ | 1331 deps = [ |
| 1339 "//components/google/core/browser", | 1332 "//components/google/core/browser", |
| 1340 "//components/omnibox/browser", | 1333 "//components/omnibox/browser", |
| 1341 "//components/rlz", | 1334 "//components/rlz", |
| 1342 "//components/search_engines", | 1335 "//components/search_engines", |
| 1343 "//rlz:rlz_lib", | 1336 "//rlz:rlz_lib", |
| 1344 ] | 1337 ] |
| 1345 } | 1338 } |
| 1346 } | 1339 } |
| OLD | NEW |