| 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 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 678 sources += rebase_path( | 678 sources += rebase_path( |
| 679 gypi_values.chrome_browser_notifications_android_java_ui_sources, | 679 gypi_values.chrome_browser_notifications_android_java_ui_sources, |
| 680 ".", | 680 ".", |
| 681 "//chrome") | 681 "//chrome") |
| 682 } else { | 682 } else { |
| 683 sources += rebase_path( | 683 sources += rebase_path( |
| 684 gypi_values.chrome_browser_notifications_non_android_sources, | 684 gypi_values.chrome_browser_notifications_non_android_sources, |
| 685 ".", | 685 ".", |
| 686 "//chrome") | 686 "//chrome") |
| 687 } | 687 } |
| 688 if (is_mac) { |
| 689 deps += [ "//chrome/browser/ui/cocoa/notifications:common" ] |
| 690 } |
| 688 } | 691 } |
| 689 if (enable_themes) { | 692 if (enable_themes) { |
| 690 sources += | 693 sources += |
| 691 rebase_path(gypi_values.chrome_browser_themes_sources, ".", "//chrome") | 694 rebase_path(gypi_values.chrome_browser_themes_sources, ".", "//chrome") |
| 692 } | 695 } |
| 693 | 696 |
| 694 if (enable_basic_printing || enable_print_preview) { | 697 if (enable_basic_printing || enable_print_preview) { |
| 695 # Some form of printing support. | 698 # Some form of printing support. |
| 696 sources += rebase_path(gypi_values.chrome_browser_printing_basic_sources, | 699 sources += rebase_path(gypi_values.chrome_browser_printing_basic_sources, |
| 697 ".", | 700 ".", |
| (...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1369 # linking all of the test support. | 1372 # linking all of the test support. |
| 1370 source_set("pepper_cdm_test_constants") { | 1373 source_set("pepper_cdm_test_constants") { |
| 1371 testonly = true | 1374 testonly = true |
| 1372 visibility = [ "//chrome/*" ] | 1375 visibility = [ "//chrome/*" ] |
| 1373 sources = [ | 1376 sources = [ |
| 1374 "media/pepper_cdm_test_constants.cc", | 1377 "media/pepper_cdm_test_constants.cc", |
| 1375 "media/pepper_cdm_test_constants.h", | 1378 "media/pepper_cdm_test_constants.h", |
| 1376 ] | 1379 ] |
| 1377 } | 1380 } |
| 1378 } | 1381 } |
| OLD | NEW |