| 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/features.gni") | 6 import("//build/config/features.gni") |
| 7 | 7 |
| 8 # Implements "content_main" given the defines and visibility. On Windows this | 8 # Implements "content_main" given the defines and visibility. On Windows this |
| 9 # is compiled with a different define for browser and child, but all code needs | 9 # is compiled with a different define for browser and child, but all code needs |
| 10 # to be shared. | 10 # to be shared. |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 "//content/browser", | 45 "//content/browser", |
| 46 "//content/child", | 46 "//content/child", |
| 47 "//content/public/android:jni", | 47 "//content/public/android:jni", |
| 48 "//content/browser", | 48 "//content/browser", |
| 49 "//content/child", | 49 "//content/child", |
| 50 "//device/bluetooth", | 50 "//device/bluetooth", |
| 51 "//device/gamepad", | 51 "//device/gamepad", |
| 52 "//device/generic_sensor", | 52 "//device/generic_sensor", |
| 53 "//device/geolocation", | 53 "//device/geolocation", |
| 54 "//device/power_save_blocker", | 54 "//device/power_save_blocker", |
| 55 "//device/time_zone_monitor", |
| 55 "//device/usb", | 56 "//device/usb", |
| 56 "//device/vibration", | 57 "//device/vibration", |
| 57 "//gpu", | 58 "//gpu", |
| 58 "//media", | 59 "//media", |
| 59 "//media/capture", | 60 "//media/capture", |
| 60 "//media/midi", | 61 "//media/midi", |
| 61 "//net", | 62 "//net", |
| 62 "//skia", | 63 "//skia", |
| 63 "//third_party/android_tools:cpu_features", | 64 "//third_party/android_tools:cpu_features", |
| 64 "//ui/android", | 65 "//ui/android", |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 implement_content_app("browser") { | 160 implement_content_app("browser") { |
| 160 visibility = [ "//content/public/app:browser" ] | 161 visibility = [ "//content/public/app:browser" ] |
| 161 defines = [ "CHROME_MULTIPLE_DLL_BROWSER" ] | 162 defines = [ "CHROME_MULTIPLE_DLL_BROWSER" ] |
| 162 } | 163 } |
| 163 | 164 |
| 164 implement_content_app("child") { | 165 implement_content_app("child") { |
| 165 visibility = [ "//content/public/app:child" ] | 166 visibility = [ "//content/public/app:child" ] |
| 166 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] | 167 defines = [ "CHROME_MULTIPLE_DLL_CHILD" ] |
| 167 } | 168 } |
| 168 } | 169 } |
| OLD | NEW |