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 if (is_android) { | 5 if (is_android) { |
6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
7 } | 7 } |
8 | 8 |
9 source_set("lib") { | 9 source_set("lib") { |
10 sources = [ | 10 sources = [ |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 deps = [ | 103 deps = [ |
104 ":lib", | 104 ":lib", |
105 "//base", | 105 "//base", |
106 "//base:base_static", | 106 "//base:base_static", |
107 "//components/crash/core/common", | 107 "//components/crash/core/common", |
108 "//content/public/common:content_descriptors", | 108 "//content/public/common:content_descriptors", |
109 "//content/public/common:result_codes", | 109 "//content/public/common:result_codes", |
110 ] | 110 ] |
111 | 111 |
112 if (is_android) { | 112 if (is_android) { |
113 defines += [ "CHROME_BUILD_ID=" + android_chrome_build_id ] | 113 defines += [ "CHROME_BUILD_ID=\"$android_chrome_build_id\"" ] |
114 } | 114 } |
115 | 115 |
116 if (is_win) { | 116 if (is_win) { |
117 deps += [ | 117 deps += [ |
118 "//sandbox", | 118 "//sandbox", |
119 "//breakpad:breakpad_handler", | 119 "//breakpad:breakpad_handler", |
120 | 120 |
121 #'../breakpad/breakpad.gyp:breakpad_sender', TODO(GYP) | 121 #'../breakpad/breakpad.gyp:breakpad_sender', TODO(GYP) |
122 ] | 122 ] |
123 } else if (is_posix && !is_ios) { | 123 } else if (is_posix && !is_ios) { |
(...skipping 24 matching lines...) Expand all Loading... |
148 deps += [ | 148 deps += [ |
149 ":lib", | 149 ":lib", |
150 "//base", | 150 "//base", |
151 "//base:base_static", | 151 "//base:base_static", |
152 "//breakpad", | 152 "//breakpad", |
153 "//breakpad:client", | 153 "//breakpad:client", |
154 "//components/crash/core/common", | 154 "//components/crash/core/common", |
155 ] | 155 ] |
156 } | 156 } |
157 } | 157 } |
OLD | NEW |