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 # GYP version: storage/storage_common.gyp:storage_common | 5 # GYP version: storage/storage_common.gyp:storage_common |
6 component("common") { | 6 component("common") { |
7 output_name = "storage_common" | 7 output_name = "storage_common" |
8 sources = [ | 8 sources = [ |
9 "data_element.cc", | 9 "data_element.cc", |
10 "data_element.h", | 10 "data_element.h", |
(...skipping 18 matching lines...) Expand all Loading... |
29 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 29 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
30 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 30 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
31 | 31 |
32 defines = [ "STORAGE_COMMON_IMPLEMENTATION" ] | 32 defines = [ "STORAGE_COMMON_IMPLEMENTATION" ] |
33 | 33 |
34 deps = [ | 34 deps = [ |
35 "//base", | 35 "//base", |
36 "//base/third_party/dynamic_annotations", | 36 "//base/third_party/dynamic_annotations", |
37 "//net", | 37 "//net", |
38 "//url", | 38 "//url", |
| 39 "//third_party/WebKit/public:blink_headers", |
39 ] | 40 ] |
40 } | 41 } |
OLD | NEW |