| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//components/spellcheck/spellcheck_build_features.gni") | 5 import("//components/spellcheck/spellcheck_build_features.gni") |
| 6 | 6 |
| 7 source_set("renderer") { | 7 source_set("renderer") { |
| 8 sources = [ | 8 sources = [ |
| 9 "custom_dictionary_engine.cc", | 9 "custom_dictionary_engine.cc", |
| 10 "custom_dictionary_engine.h", | 10 "custom_dictionary_engine.h", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 "hunspell_engine.h", | 39 "hunspell_engine.h", |
| 40 ] | 40 ] |
| 41 } | 41 } |
| 42 | 42 |
| 43 public_deps = [ | 43 public_deps = [ |
| 44 "//components/spellcheck:build_features", | 44 "//components/spellcheck:build_features", |
| 45 ] | 45 ] |
| 46 deps = [ | 46 deps = [ |
| 47 "//base:i18n", | 47 "//base:i18n", |
| 48 "//components/spellcheck/common", | 48 "//components/spellcheck/common", |
| 49 "//content/public/common", |
| 49 "//content/public/renderer", | 50 "//content/public/renderer", |
| 50 "//ipc", | 51 "//ipc", |
| 52 "//services/service_manager/public/cpp", |
| 51 "//third_party/WebKit/public:blink", | 53 "//third_party/WebKit/public:blink", |
| 52 "//third_party/icu", | 54 "//third_party/icu", |
| 53 ] | 55 ] |
| 54 | 56 |
| 55 if (!is_android) { | 57 if (!is_android) { |
| 56 deps += [ "//third_party/hunspell" ] | 58 deps += [ "//third_party/hunspell" ] |
| 57 } | 59 } |
| 58 | 60 |
| 59 if (is_win) { | 61 if (is_win) { |
| 60 cflags = [ "/wd4267" ] # conversion from 'size_t' to 'int' on x64 (crbug.co
m/633312) | 62 cflags = [ "/wd4267" ] # conversion from 'size_t' to 'int' on x64 (crbug.co
m/633312) |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 ] | 100 ] |
| 99 | 101 |
| 100 if (is_mac && !is_ios) { | 102 if (is_mac && !is_ios) { |
| 101 deps += [ "//third_party/hunspell" ] | 103 deps += [ "//third_party/hunspell" ] |
| 102 } | 104 } |
| 103 | 105 |
| 104 if (is_win) { | 106 if (is_win) { |
| 105 cflags = [ "/wd4267" ] # conversion from 'size_t' to 'int' on x64 (crbug.co
m/633312) | 107 cflags = [ "/wd4267" ] # conversion from 'size_t' to 'int' on x64 (crbug.co
m/633312) |
| 106 } | 108 } |
| 107 } | 109 } |
| OLD | NEW |