| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 1531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1542 "//media/midi", | 1542 "//media/midi", |
| 1543 "//mojo/common", | 1543 "//mojo/common", |
| 1544 "//mojo/edk/system", | 1544 "//mojo/edk/system", |
| 1545 "//mojo/public/cpp/bindings", | 1545 "//mojo/public/cpp/bindings", |
| 1546 "//mojo/public/js", | 1546 "//mojo/public/js", |
| 1547 "//net:extras", | 1547 "//net:extras", |
| 1548 "//ppapi/features", | 1548 "//ppapi/features", |
| 1549 "//printing/features", | 1549 "//printing/features", |
| 1550 "//rlz/features", | 1550 "//rlz/features", |
| 1551 "//services/image_decoder/public/cpp", | 1551 "//services/image_decoder/public/cpp", |
| 1552 "//services/pdf_compositor/public/cpp", |
| 1552 "//services/preferences/public/interfaces/", | 1553 "//services/preferences/public/interfaces/", |
| 1553 "//services/service_manager/public/cpp", | 1554 "//services/service_manager/public/cpp", |
| 1554 "//services/shape_detection/public/interfaces", | 1555 "//services/shape_detection/public/interfaces", |
| 1555 "//skia", | 1556 "//skia", |
| 1556 "//sql", | 1557 "//sql", |
| 1557 "//storage/browser", | 1558 "//storage/browser", |
| 1558 "//storage/common", | 1559 "//storage/common", |
| 1559 "//third_party/WebKit/public:features", | 1560 "//third_party/WebKit/public:features", |
| 1560 "//third_party/WebKit/public:image_resources", | 1561 "//third_party/WebKit/public:image_resources", |
| 1561 "//third_party/WebKit/public:resources", | 1562 "//third_party/WebKit/public:resources", |
| (...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2344 "net/nss_context_linux.cc", | 2345 "net/nss_context_linux.cc", |
| 2345 ] | 2346 ] |
| 2346 if (is_chromeos) { | 2347 if (is_chromeos) { |
| 2347 sources -= [ "net/nss_context_linux.cc" ] | 2348 sources -= [ "net/nss_context_linux.cc" ] |
| 2348 } | 2349 } |
| 2349 } | 2350 } |
| 2350 | 2351 |
| 2351 if (enable_basic_printing || enable_print_preview) { | 2352 if (enable_basic_printing || enable_print_preview) { |
| 2352 # Some form of printing support. | 2353 # Some form of printing support. |
| 2353 sources += [ | 2354 sources += [ |
| 2355 "printing/print_composite_client.cc", |
| 2356 "printing/print_composite_client.h", |
| 2354 "printing/print_job.cc", | 2357 "printing/print_job.cc", |
| 2355 "printing/print_job.h", | 2358 "printing/print_job.h", |
| 2356 "printing/print_job_manager.cc", | 2359 "printing/print_job_manager.cc", |
| 2357 "printing/print_job_manager.h", | 2360 "printing/print_job_manager.h", |
| 2358 "printing/print_job_worker.cc", | 2361 "printing/print_job_worker.cc", |
| 2359 "printing/print_job_worker.h", | 2362 "printing/print_job_worker.h", |
| 2360 "printing/print_job_worker_owner.cc", | 2363 "printing/print_job_worker_owner.cc", |
| 2361 "printing/print_job_worker_owner.h", | 2364 "printing/print_job_worker_owner.h", |
| 2362 "printing/print_view_manager_base.cc", | 2365 "printing/print_view_manager_base.cc", |
| 2363 "printing/print_view_manager_base.h", | 2366 "printing/print_view_manager_base.h", |
| (...skipping 2162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4526 "media/pepper_cdm_test_constants.cc", | 4529 "media/pepper_cdm_test_constants.cc", |
| 4527 "media/pepper_cdm_test_constants.h", | 4530 "media/pepper_cdm_test_constants.h", |
| 4528 ] | 4531 ] |
| 4529 } | 4532 } |
| 4530 } | 4533 } |
| 4531 | 4534 |
| 4532 service_manifest("preferences_manifest") { | 4535 service_manifest("preferences_manifest") { |
| 4533 name = "preferences" | 4536 name = "preferences" |
| 4534 source = "prefs/preferences_manifest.json" | 4537 source = "prefs/preferences_manifest.json" |
| 4535 } | 4538 } |
| OLD | NEW |