Chromium Code Reviews| 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/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//chrome/common/features.gni") | 7 import("//chrome/common/features.gni") |
| 8 import("//tools/grit/grit_rule.gni") | 8 import("//tools/grit/grit_rule.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 53 | 53 |
| 54 configs += [ | 54 configs += [ |
| 55 "//build/config/compiler:no_size_t_to_int_warning", | 55 "//build/config/compiler:no_size_t_to_int_warning", |
| 56 "//build/config/compiler:wexit_time_destructors", | 56 "//build/config/compiler:wexit_time_destructors", |
| 57 "//build/config:precompiled_headers", | 57 "//build/config:precompiled_headers", |
| 58 ] | 58 ] |
| 59 | 59 |
| 60 deps = [ | 60 deps = [ |
| 61 ":devtools_protocol_constants", | 61 ":devtools_protocol_constants", |
| 62 "//base", | 62 "//base", |
| 63 "//components/ui_devtools", | |
|
dgozman
2016/11/15 23:47:08
Let's move this dependency to inspect_ui.cc.
Sarmad Hashmi
2016/11/16 01:42:57
Done.
| |
| 63 "//content/public/browser", | 64 "//content/public/browser", |
| 64 "//net", | 65 "//net", |
| 65 "//third_party/WebKit/public:features", | 66 "//third_party/WebKit/public:features", |
| 66 "//ui/events:dom_keycode_converter", | 67 "//ui/events:dom_keycode_converter", |
| 67 ] | 68 ] |
| 68 | 69 |
| 69 if (!is_android) { | 70 if (!is_android) { |
| 70 deps += [ | 71 deps += [ |
| 71 "//chrome:extra_resources", | 72 "//chrome:extra_resources", |
| 72 "//chrome:resources", | 73 "//chrome:resources", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 132 "remote_debugging_server.h", | 133 "remote_debugging_server.h", |
| 133 ] | 134 ] |
| 134 if (enable_service_discovery) { | 135 if (enable_service_discovery) { |
| 135 sources += [ | 136 sources += [ |
| 136 "device/cast_device_provider.cc", | 137 "device/cast_device_provider.cc", |
| 137 "device/cast_device_provider.h", | 138 "device/cast_device_provider.h", |
| 138 ] | 139 ] |
| 139 } | 140 } |
| 140 } | 141 } |
| 141 } | 142 } |
| OLD | NEW |