| 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("//chrome/common/features.gni") | 9 import("//chrome/common/features.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 675 sources += rebase_path( | 675 sources += rebase_path( |
| 676 gypi_values.chrome_browser_notifications_android_java_ui_sources, | 676 gypi_values.chrome_browser_notifications_android_java_ui_sources, |
| 677 ".", | 677 ".", |
| 678 "//chrome") | 678 "//chrome") |
| 679 } else { | 679 } else { |
| 680 sources += rebase_path( | 680 sources += rebase_path( |
| 681 gypi_values.chrome_browser_notifications_non_android_sources, | 681 gypi_values.chrome_browser_notifications_non_android_sources, |
| 682 ".", | 682 ".", |
| 683 "//chrome") | 683 "//chrome") |
| 684 } | 684 } |
| 685 deps += [ "//chrome/browser/ui/cocoa/notifications:notification_common" ] |
| 685 } | 686 } |
| 686 if (enable_themes) { | 687 if (enable_themes) { |
| 687 sources += | 688 sources += |
| 688 rebase_path(gypi_values.chrome_browser_themes_sources, ".", "//chrome") | 689 rebase_path(gypi_values.chrome_browser_themes_sources, ".", "//chrome") |
| 689 } | 690 } |
| 690 | 691 |
| 691 if (enable_basic_printing || enable_print_preview) { | 692 if (enable_basic_printing || enable_print_preview) { |
| 692 # Some form of printing support. | 693 # Some form of printing support. |
| 693 sources += rebase_path(gypi_values.chrome_browser_printing_basic_sources, | 694 sources += rebase_path(gypi_values.chrome_browser_printing_basic_sources, |
| 694 ".", | 695 ".", |
| (...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1366 # linking all of the test support. | 1367 # linking all of the test support. |
| 1367 source_set("pepper_cdm_test_constants") { | 1368 source_set("pepper_cdm_test_constants") { |
| 1368 testonly = true | 1369 testonly = true |
| 1369 visibility = [ "//chrome/*" ] | 1370 visibility = [ "//chrome/*" ] |
| 1370 sources = [ | 1371 sources = [ |
| 1371 "media/pepper_cdm_test_constants.cc", | 1372 "media/pepper_cdm_test_constants.cc", |
| 1372 "media/pepper_cdm_test_constants.h", | 1373 "media/pepper_cdm_test_constants.h", |
| 1373 ] | 1374 ] |
| 1374 } | 1375 } |
| 1375 } | 1376 } |
| OLD | NEW |