| 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("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 10 | 10 |
| (...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 678 "ImageCaptureCore.framework", | 678 "ImageCaptureCore.framework", |
| 679 "OpenGL.framework", | 679 "OpenGL.framework", |
| 680 "QuartzCore.framework", | 680 "QuartzCore.framework", |
| 681 "SecurityInterface.framework", | 681 "SecurityInterface.framework", |
| 682 ] | 682 ] |
| 683 } | 683 } |
| 684 | 684 |
| 685 if (enable_rlz) { | 685 if (enable_rlz) { |
| 686 sources += | 686 sources += |
| 687 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 687 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 688 deps += [ "//rlz:rlz_lib" ] | 688 deps += [ |
| 689 "//components/rlz", |
| 690 "//rlz:rlz_lib", |
| 691 ] |
| 689 } | 692 } |
| 690 | 693 |
| 691 # TODO(GYP) | 694 # TODO(GYP) |
| 692 # Temporary fix to break the browser target into smaller chunks so it | 695 # Temporary fix to break the browser target into smaller chunks so it |
| 693 # will link with goma builds. | 696 # will link with goma builds. |
| 694 #["OS=="win" and chromium_win_pch==0", { | 697 #["OS=="win" and chromium_win_pch==0", { |
| 695 # "msvs_shard": 4, | 698 # "msvs_shard": 4, |
| 696 #}], | 699 #}], |
| 697 | 700 |
| 698 if (is_win) { | 701 if (is_win) { |
| (...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1186 ] | 1189 ] |
| 1187 } | 1190 } |
| 1188 | 1191 |
| 1189 if (enable_wifi_bootstrapping) { | 1192 if (enable_wifi_bootstrapping) { |
| 1190 sources += [ | 1193 sources += [ |
| 1191 "local_discovery/wifi/mock_wifi_manager.cc", | 1194 "local_discovery/wifi/mock_wifi_manager.cc", |
| 1192 "local_discovery/wifi/mock_wifi_manager.h", | 1195 "local_discovery/wifi/mock_wifi_manager.h", |
| 1193 ] | 1196 ] |
| 1194 } | 1197 } |
| 1195 } | 1198 } |
| OLD | NEW |