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