Makes ResourceProvider setup java on android
[chromium-blink-merge.git] / chrome / tools / profile_reset / BUILD.gn
blobb1c488f130f334f98f1f6b7432aa1306db906ee2
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 executable("jtl_compiler") {
6   sources = [
7     "//chrome/browser/profile_resetter/jtl_foundation.cc",
8     "//chrome/browser/profile_resetter/jtl_foundation.h",
9     "jtl_compiler_frontend.cc",
10   ]
11   deps = [
12     ":jtl_compiler_lib",
13     "//base",
14     "//crypto",
15   ]
18 source_set("jtl_compiler_lib") {
19   sources = [
20     "//chrome/browser/profile_resetter/jtl_foundation.h",
21     "//chrome/browser/profile_resetter/jtl_instructions.h",
22     "jtl_compiler.cc",
23     "jtl_compiler.h",
24     "jtl_parser.cc",
25     "jtl_parser.h",
26   ]
27   deps = [
28     "//base",
29     "//third_party/re2",
30   ]