| 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("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
| 6 | 6 |
| 7 gypi_values = exec_script( | 7 gypi_values = exec_script( |
| 8 "//build/gypi_to_gn.py", | 8 "//build/gypi_to_gn.py", |
| 9 [ rebase_path("../chrome_common.gypi") ], | 9 [ rebase_path("../chrome_common.gypi") ], |
| 10 "scope", | 10 "scope", |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 if (enable_mdns) { | 183 if (enable_mdns) { |
| 184 sources += [ "local_discovery/local_discovery_messages.h" ] | 184 sources += [ "local_discovery/local_discovery_messages.h" ] |
| 185 } | 185 } |
| 186 | 186 |
| 187 if (is_chromeos) { | 187 if (is_chromeos) { |
| 188 sources -= [ "chrome_version_info_linux.cc" ] | 188 sources -= [ "chrome_version_info_linux.cc" ] |
| 189 } | 189 } |
| 190 | 190 |
| 191 if (is_mac) { | 191 if (is_mac) { |
| 192 sources -= [ | 192 sources -= [ |
| 193 "child_process_logging_posix.cc", | |
| 194 "chrome_version_info_posix.cc", | 193 "chrome_version_info_posix.cc", |
| 195 ] | 194 ] |
| 196 deps += [ | 195 deps += [ |
| 197 "//third_party/mach_override", | 196 "//third_party/mach_override", |
| 198 #'../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp:google_
toolbox_for_mac', TODO(GYP) | 197 #'../third_party/google_toolbox_for_mac/google_toolbox_for_mac.gyp:google_
toolbox_for_mac', TODO(GYP) |
| 199 ] | 198 ] |
| 200 } | 199 } |
| 201 | 200 |
| 202 if (enable_remoting) { | 201 if (enable_remoting) { |
| 203 #deps += [ '../remoting/remoting.gyp:remoting_client_plugin' ] TODO(GYP) | 202 #deps += [ '../remoting/remoting.gyp:remoting_client_plugin' ] TODO(GYP) |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 295 "//components/bookmarks/common", | 294 "//components/bookmarks/common", |
| 296 "//third_party/widevine/cdm:version_h", | 295 "//third_party/widevine/cdm:version_h", |
| 297 ] | 296 ] |
| 298 | 297 |
| 299 if (enable_nacl) { | 298 if (enable_nacl) { |
| 300 deps += [ | 299 deps += [ |
| 301 #'../components/nacl.gyp:nacl_switches', TODO(GYP) | 300 #'../components/nacl.gyp:nacl_switches', TODO(GYP) |
| 302 ] | 301 ] |
| 303 } | 302 } |
| 304 } | 303 } |
| OLD | NEW |