| 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 # Note that this build file assumes rlz_use_chrome_net which is a condition in | 5 # Note that this build file assumes rlz_use_chrome_net which is a condition in |
| 6 # the GYP file, but is always true for Chrome builds. | 6 # the GYP file, but is always true for Chrome builds. |
| 7 | 7 |
| 8 import("//testing/rules.gni") |
| 9 |
| 8 config("rlz_config") { | 10 config("rlz_config") { |
| 9 defines = [ "RLZ_NETWORK_IMPLEMENTATION_CHROME_NET" ] | 11 defines = [ "RLZ_NETWORK_IMPLEMENTATION_CHROME_NET" ] |
| 10 } | 12 } |
| 11 | 13 |
| 12 source_set("rlz_lib") { | 14 source_set("rlz_lib") { |
| 13 sources = [ | 15 sources = [ |
| 14 "chromeos/lib/machine_id_chromeos.cc", | 16 "chromeos/lib/machine_id_chromeos.cc", |
| 15 "chromeos/lib/rlz_value_store_chromeos.cc", | 17 "chromeos/lib/rlz_value_store_chromeos.cc", |
| 16 "chromeos/lib/rlz_value_store_chromeos.h", | 18 "chromeos/lib/rlz_value_store_chromeos.h", |
| 17 "ios/lib/machine_id_ios.cc", | 19 "ios/lib/machine_id_ios.cc", |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 sources = [ | 137 sources = [ |
| 136 "win/dll/dll_main.cc", | 138 "win/dll/dll_main.cc", |
| 137 "win/dll/exports.cc", | 139 "win/dll/exports.cc", |
| 138 ] | 140 ] |
| 139 deps = [ | 141 deps = [ |
| 140 ":rlz_lib", | 142 ":rlz_lib", |
| 141 "//third_party/zlib", | 143 "//third_party/zlib", |
| 142 ] | 144 ] |
| 143 } | 145 } |
| 144 } | 146 } |
| OLD | NEW |