| 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//extensions/features/features.gni") | 6 import("//extensions/features/features.gni") |
| 7 | 7 |
| 8 assert(enable_extensions) | 8 assert(enable_extensions) |
| 9 | 9 |
| 10 group("browser") { | 10 group("browser") { |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 deps = [ | 32 deps = [ |
| 33 "//extensions/browser:browser_sources", | 33 "//extensions/browser:browser_sources", |
| 34 "//extensions/browser/api", | 34 "//extensions/browser/api", |
| 35 ] | 35 ] |
| 36 } | 36 } |
| 37 | 37 |
| 38 source_set("browser_sources") { | 38 source_set("browser_sources") { |
| 39 visibility = [ "./*" ] | 39 visibility = [ "./*" ] |
| 40 | 40 |
| 41 sources = [ | 41 sources = [ |
| 42 "api/declarative_net_request/matcher_util.cc", |
| 43 "api/declarative_net_request/matcher_util.h", |
| 44 "api/declarative_net_request/rules_monitor.cc", |
| 45 "api/declarative_net_request/rules_monitor.h", |
| 46 "api/declarative_net_request/ruleset_manager.cc", |
| 47 "api/declarative_net_request/ruleset_manager.h", |
| 42 "api_activity_monitor.cc", | 48 "api_activity_monitor.cc", |
| 43 "api_activity_monitor.h", | 49 "api_activity_monitor.h", |
| 44 "app_sorting.h", | 50 "app_sorting.h", |
| 45 "bad_message.cc", | 51 "bad_message.cc", |
| 46 "bad_message.h", | 52 "bad_message.h", |
| 47 "blacklist_state.h", | 53 "blacklist_state.h", |
| 48 "blob_holder.cc", | 54 "blob_holder.cc", |
| 49 "blob_holder.h", | 55 "blob_holder.h", |
| 50 "blob_reader.cc", | 56 "blob_reader.cc", |
| 51 "blob_reader.h", | 57 "blob_reader.h", |
| (...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 "api/media_perception_private/media_perception_api_manager_unittest.cc", | 526 "api/media_perception_private/media_perception_api_manager_unittest.cc", |
| 521 "api/webcam_private/visca_webcam_unittest.cc", | 527 "api/webcam_private/visca_webcam_unittest.cc", |
| 522 ] | 528 ] |
| 523 | 529 |
| 524 deps += [ | 530 deps += [ |
| 525 "//chromeos:media_perception_proto", | 531 "//chromeos:media_perception_proto", |
| 526 "//chromeos:test_support", | 532 "//chromeos:test_support", |
| 527 ] | 533 ] |
| 528 } | 534 } |
| 529 } | 535 } |
| OLD | NEW |