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 config("rlz_config") { | 8 config("rlz_config") { |
9 defines = [ "RLZ_NETWORK_IMPLEMENTATION_CHROME_NET" ] | 9 defines = [ "RLZ_NETWORK_IMPLEMENTATION_CHROME_NET" ] |
10 } | 10 } |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 "win/lib/machine_id_win.cc", | 46 "win/lib/machine_id_win.cc", |
47 "win/lib/process_info.cc", | 47 "win/lib/process_info.cc", |
48 "win/lib/process_info.h", | 48 "win/lib/process_info.h", |
49 "win/lib/registry_util.cc", | 49 "win/lib/registry_util.cc", |
50 "win/lib/registry_util.h", | 50 "win/lib/registry_util.h", |
51 "win/lib/rlz_lib_win.cc", | 51 "win/lib/rlz_lib_win.cc", |
52 "win/lib/rlz_value_store_registry.cc", | 52 "win/lib/rlz_value_store_registry.cc", |
53 "win/lib/rlz_value_store_registry.h", | 53 "win/lib/rlz_value_store_registry.h", |
54 ] | 54 ] |
55 | 55 |
56 direct_dependent_configs = [ ":rlz_config" ] | 56 public_configs = [ ":rlz_config" ] |
57 | 57 |
58 deps = [ | 58 deps = [ |
59 "//base", | 59 "//base", |
60 "//base/third_party/dynamic_annotations", | 60 "//base/third_party/dynamic_annotations", |
61 "//net", | 61 "//net", |
62 ] | 62 ] |
63 | 63 |
64 if (is_ios) { | 64 if (is_ios) { |
65 # These _mac files are also used on iOS. | 65 # These _mac files are also used on iOS. |
66 set_sources_assignment_filter([]) | 66 set_sources_assignment_filter([]) |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
128 sources = [ | 128 sources = [ |
129 "win/dll/dll_main.cc", | 129 "win/dll/dll_main.cc", |
130 "win/dll/exports.cc", | 130 "win/dll/exports.cc", |
131 ] | 131 ] |
132 deps = [ | 132 deps = [ |
133 ":rlz_lib", | 133 ":rlz_lib", |
134 "//third_party/zlib", | 134 "//third_party/zlib", |
135 ] | 135 ] |
136 } | 136 } |
137 } | 137 } |
OLD | NEW |