| 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("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//extensions/features/features.gni") | 7 import("//extensions/features/features.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//printing/features/features.gni") | 9 import("//printing/features/features.gni") |
| 10 import("//third_party/protobuf/proto_library.gni") | 10 import("//third_party/protobuf/proto_library.gni") |
| (...skipping 1440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1451 } else { | 1451 } else { |
| 1452 sources += [ | 1452 sources += [ |
| 1453 "printing/fake_cups_print_job_manager.cc", | 1453 "printing/fake_cups_print_job_manager.cc", |
| 1454 "printing/fake_cups_print_job_manager.h", | 1454 "printing/fake_cups_print_job_manager.h", |
| 1455 ] | 1455 ] |
| 1456 } | 1456 } |
| 1457 | 1457 |
| 1458 if (use_cras) { | 1458 if (use_cras) { |
| 1459 defines = [ "USE_CRAS" ] | 1459 defines = [ "USE_CRAS" ] |
| 1460 } | 1460 } |
| 1461 | |
| 1462 if (ui_compositor_image_transport) { | |
| 1463 deps += [ "//ui/gl" ] | |
| 1464 } | |
| 1465 } | 1461 } |
| 1466 | 1462 |
| 1467 static_library("arc_test_support") { | 1463 static_library("arc_test_support") { |
| 1468 testonly = true | 1464 testonly = true |
| 1469 | 1465 |
| 1470 sources = [ | 1466 sources = [ |
| 1471 "arc/test/arc_data_removed_waiter.cc", | 1467 "arc/test/arc_data_removed_waiter.cc", |
| 1472 "arc/test/arc_data_removed_waiter.h", | 1468 "arc/test/arc_data_removed_waiter.h", |
| 1473 ] | 1469 ] |
| 1474 } | 1470 } |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1794 "policy/proto/chrome_device_policy.proto", | 1790 "policy/proto/chrome_device_policy.proto", |
| 1795 "policy/proto/install_attributes.proto", | 1791 "policy/proto/install_attributes.proto", |
| 1796 ] | 1792 ] |
| 1797 } | 1793 } |
| 1798 | 1794 |
| 1799 proto_library("attestation_proto") { | 1795 proto_library("attestation_proto") { |
| 1800 sources = [ | 1796 sources = [ |
| 1801 "attestation/attestation_key_payload.proto", | 1797 "attestation/attestation_key_payload.proto", |
| 1802 ] | 1798 ] |
| 1803 } | 1799 } |
| OLD | NEW |